        /* Premium Design System with Enhanced Aesthetics */
        :root {
            --primary-color: #363636;
            /* Main Dark Gray */
            --secondary-color: #fdc019;
            /* Secondary Yellow */
            --accent-color: #fdc019;
            /* Secondary Yellow */
            --text-color: #1a2332;
            --light-bg: #f8f9fc;
            --dark-bg: #0f1923;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #2d2d2d 0%, #4a4a4a 100%);
            --gradient-accent: linear-gradient(135deg, #fdc019 0%, #ffdb4d 100%);
            --gradient-overlay: linear-gradient(315deg, rgba(10, 10, 10, 0.2) 0%, rgba(20, 20, 20, 0.95) 100%);
            --gradient-siyah: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 1) 100%);
        }

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

        html {
            height: 100%;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            width: 100%;
        }

        body {
            font-family: "Archivo", sans-serif;
            color: var(--text-color);
            background-color: #fff;
            overflow-x: hidden;
            font-size: 18px;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            padding: 0 !important;
            position: relative;
            width: 100%;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }


        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Archivo", sans-serif;
        }

        img {
            width: 100%;
            border-radius: 3px;
        }

        /* SHARP CORNERS - Relaxed for modern feel */
        /* * { border-radius: 0 !important; } REMOVED PER USER REQUEST */

        /* ========================================
           SMOOTH FADE-IN-UP ANIMATION SYSTEM
        ======================================== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Stagger delays for sequential elements */
        .fade-in-up:nth-child(1) {
            transition-delay: 0.1s;
        }

        .fade-in-up:nth-child(2) {
            transition-delay: 0.2s;
        }

        .fade-in-up:nth-child(3) {
            transition-delay: 0.3s;
        }

        .fade-in-up:nth-child(4) {
            transition-delay: 0.4s;
        }

        .fade-in-up:nth-child(5) {
            transition-delay: 0.5s;
        }

        /* ========================================
           1. TOP BAR - Sleek & Minimal
        ======================================== */
        /* ========================================
           1. TOP BAR - Sleek & Minimal
        ======================================== */
        .top-bar {
            background: #363636;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.85rem;
            height: 50px;
            /* Fixed Height */
            padding: 0;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .top-bar .container {
            height: 100%;
        }

        .top-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.10), transparent);
            animation: shimmer 3s infinite;
        }

        .contact-info span {
            font-size: 0.9rem;
            font-weight: 700;
        }

        .contact-info span i {
            transform: scaleX(-1);
        }

        @keyframes shimmer {
            to {
                left: 100%;
            }
        }

        .top-bar a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            margin-right: 0;
            margin-left: 20px;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
            /* Slightly larger icons */
            display: inline-flex;
            align-items: center;
        }

        .social-links {
            display: flex;
            align-items: center;
            height: 100%;
        }

        .social-links ul,
        .social-links ul li {
            padding: 0px;
            margin: 0px;
            list-style: none;
        }

        .social-links ul li {
            display: inline-block;
        }

        .top-bar a:hover {
            color: var(--secondary-color);
            /* Corporate Highlight */
            transform: none;
            /* No movement needed for strict corporate vibe */
        }

        /* Remove background circles from social links in top bar if present elsewhere */
        .top-bar .social-links a {
            width: auto;
            height: auto;
            background: transparent !important;
            margin-right: 0;
            margin-left: 15px;
        }

        .top-bar i {
            margin-right: 6px;
            color: var(--secondary-color);
        }

        /* ========================================
           2. HEADER & MENU - Premium Navigation
        ======================================== */
        .navbar {
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            padding: 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
        }

        .navbar .container {
            padding-top: 8px;
            padding-bottom: 8px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 0px 0;
            width: 294px;
            height: 80px;
            background: url(../img/trakyaagro.svg) no-repeat;
            background-size: cover;
        }

        .navbar-brand-icon {
            background: var(--gradient-accent);
            color: var(--white);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            box-shadow: 0 8px 20px rgba(253, 192, 25, 0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .navbar-brand-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.4s ease, height 0.4s ease;
        }

        .navbar-brand:hover .navbar-brand-icon::before {
            width: 100%;
            height: 100%;
        }

        .navbar-brand:hover .navbar-brand-icon {
            transform: scale(1.05);
            box-shadow: 0 12px 30px rgba(253, 192, 25, 0.4);
        }

        .navbar-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .brand-title {
            font-size: 1.6rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
        }

        .brand-subtitle {
            font-size: 0.75rem;
            color: var(--secondary-color);
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: capitalize;
        }

        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-family: "Archivo", sans-serif;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 25px 10px !important;
            position: relative;
            transition: all 0.3s ease;
        }

        /* Elegant Underline Effect */
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0%;
            height: 3px;
            background: var(--gradient-accent);
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .navbar-nav .nav-link:hover {
            color: var(--secondary-color);
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Smooth Dropdown */
        .dropdown-menu {
            display: block;
            visibility: hidden;
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: none;
            border-top: 3px solid var(--secondary-color);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
            padding: 0;
            margin-top: 0;
            min-width: 260px;
            background: white;
            border-radius: 3px !important;
        }

        .nav-item.dropdown:hover .dropdown-menu {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 13px 24px;
            font-family: "Archivo", sans-serif;
            font-weight: 500;
            color: #555;
            font-size: 0.85rem;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(90deg, rgba(253, 192, 25, 0.05), transparent);
            transition: width 0.3s ease;
        }

        .dropdown-item:hover::before {
            width: 100%;
        }

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

        .dropdown-item:hover {
            background-color: transparent;
            color: var(--secondary-color);
            padding-left: 32px;
        }

        .dropdown-toggle::after {
            display: none;
        }

        /* ========================================
           3. SLIDER - Immersive Hero Section
        ======================================== */
        .carousel-item {
            height: 70vh;
            min-height: 700px;
            background-color: #000;
            position: relative;
            overflow: hidden;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            opacity: 0.65;
            transition: transform 8s ease-out, opacity 1s ease;
        }

        .carousel-item.active img {
            animation: kenBurns 12s ease-out forwards;
        }

        @keyframes kenBurns {
            0% {
                transform: scale(1);
            }

            100% {
                transform: scale(1.05);
            }
        }

        /* Premium Gradient Overlay */
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
        }

        .slidertext h2 {
            font-size: 4.4rem;
            display: block;
            color: #FFF;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .slidertext p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.7);
            display: block;
            line-height: 1.2;
            margin: 30px 0px 50px;
        }

        .slidertext a {
            display: inline-block;
            padding: 0px 50px;
            border-radius: 5px;
            color: #FFF;
            font-size: 1.1rem;
            font-weight: 700;
            background: var(--secondary-color);
            color: var(--primary-color);
            text-decoration: none;
            line-height: 55px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);

        }

        .carousel-caption {
            position: static;
            text-align: left;
            padding: 0;
            margin-bottom: 50px;
        }

        .hero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 8px 20px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 1.5px;
            display: inline-block;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(253, 192, 25, 0.4);
            position: relative;
            overflow: hidden;
        }


        @keyframes badgeShimmer {
            to {
                left: 100%;
            }
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            color: white;
            line-height: 1.1;
            margin-bottom: 25px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            letter-spacing: -1px;
        }

        .hero-desc {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.92);
            max-width: 650px;
            margin-bottom: 35px;
            font-weight: 300;
            line-height: 1.8;
        }

        .btn-custom {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 14px 40px;
            font-weight: 600;
            text-transform: capitalize;
            font-size: 0.9rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            transition: left 0.4s ease;
            z-index: -1;
        }

        .btn-custom:hover::before {
            left: 0;
        }

        .btn-custom:hover {
            border-color: var(--secondary-color);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(253, 192, 25, 0.4);
        }

        /* 
           CUSTOM SLIDER CONTROLS 
           ----------------------
           Hiding arrows and upgrading indicators per user request
        */

        /* Hide Arrows for Main Slider */
        #mainSlider .carousel-control-prev,
        #mainSlider .carousel-control-next {
            display: none !important;
        }

        /* Creative Indicators */
        #mainSlider .carousel-indicators {
            bottom: 40px;
            gap: 12px;
            margin-bottom: 0;
            display: flex;
            justify-content: center;
        }

        #mainSlider .carousel-indicators [data-bs-target] {
            width: 12px;
            height: 12px;
            border-radius: 50% !important;
            /* Force Round Shape */
            background-color: white;
            border: 2px solid transparent;
            /* Prepare for border transition */
            opacity: 0.5;
            transition: all 0.4s ease;
            margin: 0;
            padding: 0;
            text-indent: -999px;
            /* Ensure no text interference */
            border-top: 0;
            /* Override Bootstrap default borders */
            border-bottom: 0;
            flex: 0 0 auto;
            /* Fix flex sizing issues */
        }

        /* Active Dot Effect - Simple & Premium */
        #mainSlider .carousel-indicators .active {
            opacity: 1;
            background-color: white;
            /* Soft glow */
        }

        /* ========================================
           4. ABOUT SECTION - Premium Content
        ======================================== */
        .about-section {
            padding: 120px 0;
            background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
            position: relative;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(54, 54, 54, 0.03), transparent);
            pointer-events: none;
        }

        .section-header {
            margin-bottom: 50px;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--secondary-color);
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 2.5px;
            margin-bottom: 12px;
            display: block;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--primary-color);
            font-weight: 800;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .about-content p {
            color: #555;
            line-height: 1.9;
            font-size: 1.05rem;
            margin-bottom: 22px;
        }

        .about-img-wrapper {
            position: relative;
            padding: 0;
            overflow: hidden;
        }

        .about-img-wrapper::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary-color);
            z-index: -1;
            transition: all 0.5s ease;
        }

        .about-img-wrapper:hover::before {
            top: -30px;
            left: -30px;
        }

        .about-img-wrapper img {
            display: block;
            width: 100%;
            filter: grayscale(15%);
            transition: all 0.6s ease;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .about-img-wrapper:hover img {
            filter: grayscale(0%);
            transform: scale(1.02);
        }

        /* ========================================
           5. MEMBERS SECTION - Premium Dark Wall
        ======================================== */
        .members-section {
            padding: 120px 0;
            background: #f8f9fa;
            border-top: none;
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Pattern */
        .members-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 50%, rgba(54, 54, 54, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(253, 192, 25, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.04) 1px, transparent 0);
            background-size: 100% 100%, 100% 100%, 50px 50px;
            pointer-events: none;
            animation: bgPulse 15s ease-in-out infinite;
        }

        @keyframes bgPulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.8;
            }
        }

        .members-section .section-title {
            color: var(--primary-color) !important;
            letter-spacing: 1px;
        }

        .members-section .section-subtitle {
            color: var(--secondary-color);
            opacity: 0.95;
        }

        .member-logo-wrapper {
            background: transparent;
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 130px;
            border: none;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
        }

        .member-logo-wrapper img {
            max-width: 85%;
            max-height: 75px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.5s ease;
        }

        /* Premium Hover Effect */
        .member-logo-wrapper:hover {
            transform: scale(1.2) translateY(-5px);
            z-index: 10;
        }

        .member-logo-wrapper:hover::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 160px;
            height: 160px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
            z-index: -1;
            border-radius: 50%;
        }

        .member-logo-wrapper:hover img {
            filter: none;
            opacity: 1;
            filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.1));
        }

        /* ========================================
           6. FOOTER - Premium Dark Footer
        ======================================== */
        footer {
            /* background: var(--gradient-primary); */
            background: #363636;
            color: rgba(255, 255, 255, 0.75);
            padding-top: 90px;
            position: relative;
            z-index: 10;
            margin-top: auto;
        }




        .btn-subscribe:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(253, 192, 25, 0.4);
        }

        .copyright {
            background-color: rgba(0, 0, 0, 0.3);
            padding: 28px 0;
            margin-top: 70px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }

        /* Social Links Enhancement */
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            margin-right: 10px;
        }

        .social-links a:hover {
            background: var(--gradient-accent);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(253, 192, 25, 0.3);
        }

        /* ========================================
           PREMIUM STATISTICS SECTION
        ======================================== */
        .sayacbolum {
            padding: 75px 0;
            background: rgba(54, 54, 54, 0.035);
            position: relative;
            overflow: hidden;
        }


        .stat-card-premium {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 30px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            border-radius: 5px;
            transition: all 0.4s ease;
            cursor: pointer;
        }


        .stat-card-premium:hover {
            box-shadow: 0 25px 70px rgba(253, 192, 25, 0.15);
            transform: translateY(-20px);
        }



        .stat-icon-premium {
            width: 50px;
            height: 50px;
            left: 50%;
            margin-left: -25px;
            background: var(--secondary-color);
            margin-bottom: 30px;
            padding: 20px;
            display: flex;
            position: relative;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(253, 192, 25, 0.3);
            border-radius: 5px;
        }

        .stat-card-premium:hover .stat-icon-premium {
            transform: rotateY(360deg);
            box-shadow: 0 15px 40px rgba(253, 192, 25, 0.5);
        }

        .stat-number-premium {
            font-size: 4.8rem;
            display: block;
            line-height: 50px;
            font-weight: 900;
        }

        .stat-number-premium.para {
            font-size: 2.2rem;
        }

        .stat-label-premium {}

        .stat-sparkle {}

        .stat-card-premium:hover .stat-sparkle {
            width: 100%;
        }

        /* ========================================
           PREMIUM ACTIVITIES SECTION
        ======================================== */
        .activities-section-premium {
            padding: 120px 0;
            background: white;
            position: relative;
        }

        .activity-card-premium {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
            padding: 50px 35px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid transparent;
            height: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .activity-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(253, 192, 25, 0.1), transparent);
            opacity: 0;
            transition: all 0.8s ease;
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            100% {
                transform: rotate(360deg);
            }
        }

        .activity-card-premium:hover .activity-glow {
            opacity: 1;
        }

        .activity-card-premium:hover {
            transform: translateY(-15px);
            border-color: var(--secondary-color);
            box-shadow: 0 20px 60px rgba(253, 192, 25, 0.2);
        }

        .activity-icon-wrapper-premium {
            margin-bottom: 30px;
            perspective: 1000px;
        }

        .activity-icon-premium {
            width: 100px;
            height: 100px;
            margin: 0 auto;
            background: white;
            border: 3px solid var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.6s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .activity-card-premium:hover .activity-icon-premium {
            background: var(--gradient-accent);
            border-color: var(--secondary-color);
            color: white;
            transform: rotateY(180deg) scale(1.15);
            box-shadow: 0 15px 40px rgba(253, 192, 25, 0.4);
        }

        .activity-title-premium {
            font-size: 1.4rem;
            color: var(--primary-color);
            margin-bottom: 18px;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        .activity-desc-premium {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }

        .activity-arrow-premium {
            font-size: 1.8rem;
            color: var(--secondary-color);
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.5s ease;
        }

        .activity-card-premium:hover .activity-arrow-premium {
            opacity: 1;
            transform: translateX(0);
        }

        /* ========================================
           PREMIUM TIMELINE SECTION (Styles kept for future use if needed, but not used now)
        ======================================== */
        /* ... Timeline Styles ... */

        /* ========================================
           PREMIUM NEWS SECTION
        ======================================== */
        .blogsayfa {
            position: relative;
            display: block;
            padding: 100px 0px;
        }

        .blogsayfa .col-md-4 {
            padding-bottom: 30px;
        }

        .news-section-premium {
            padding: 100px 0;
            position: relative;
        }

        .news-card-premium {
            background: white;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card-premium:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
        }

        .news-image-premium {
            position: relative;
            overflow: hidden;
            height: 280px;
        }

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

        .news-card-premium:hover .news-image-premium img {
            transform: scale(1.15);
        }

        .news-overlay-premium {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.7) 100%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .news-card-premium:hover .news-overlay-premium {
            opacity: 1;
        }

        .news-badge-premium {
            position: absolute;
            top: 25px;
            right: 25px;
            background: var(--gradient-accent);
            color: white;
            padding: 8px 18px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: capitalize;
            letter-spacing: 1.5px;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(253, 192, 25, 0.4);
        }

        .news-content-premium {
            padding: 35px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-date-premium {
            color: var(--secondary-color);
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 18px;
            text-transform: capitalize;
            letter-spacing: 0.5px;
        }

        .news-date-premium i {
            margin-right: 10px;
        }

        .news-title-premium {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 18px;
            font-weight: 700;
            line-height: 1.4;
            text-transform: capitalize;
        }

        .news-desc-premium {
            color: #666;
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 25px;
            flex: 1;
        }

        .news-link-premium {
            color: var(--secondary-color);
            font-weight: 600;
            text-decoration: none;
            text-transform: capitalize;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .news-link-premium i {
            transition: transform 0.3s ease;
        }

        .news-link-premium:hover {
            color: var(--primary-color);
        }

        .news-link-premium:hover i {
            transform: translateX(8px);
        }

        .btn-premium {
            background: var(--gradient-accent);
            color: white;
            padding: 16px 50px;
            font-weight: 700;
            text-transform: capitalize;
            font-size: 0.95rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(253, 192, 25, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.5s ease, height 0.5s ease;
        }

        .btn-premium:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-premium:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(253, 192, 25, 0.5);
            color: white;
        }

        /* ========================================
           RESPONSIVE ADJUSTMENTS
        ======================================== */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .carousel-item {
                height: 75vh;
                min-height: 600px;
            }

            /* Hide News Images in Mobile */
            .news-image-premium {
                display: none !important;
            }

            .news-card-premium {
                padding: 10px;
            }

            /* More Prominent Mobile Menu Toggler */
            .navbar-toggler {
                background: var(--gradient-accent) !important;
                padding: 12px !important;
                border-radius: 8px !important;
                box-shadow: 0 5px 15px rgba(253, 192, 25, 0.3) !important;
            }

            .navbar-toggler i {
                color: white !important;
            }
        }

        /* Mobile Menu Custom Styles */
        #mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: -100%;
            width: 85%;
            height: 100%;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 10000;
            transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
            display: flex;
            flex-direction: column;
        }

        #mobile-menu-overlay.active {
            left: 0;
        }

        #mobile-menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            /* Darker backdrop */
            z-index: 9999;
            display: none;
            backdrop-filter: blur(3px);
        }

        .mobile-menu-header {
            padding: 25px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .mobile-menu-body {
            flex-grow: 1;
            padding: 20px 0;
            overflow-y: auto;
        }

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

        .mobile-nav>li>a {
            display: block;
            padding: 15px 25px;
            font-size: 1.15rem;
            color: var(--primary-color);
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s;
        }

        .mobile-nav>li>a:active {
            background: #f8f9fa;
        }

        .mobile-submenu {
            list-style: none;
            padding: 0;
            background: #f8f9fa;
            display: none;
            /* Hidden by default */
        }

        .mobile-submenu li a {
            display: block;
            padding: 12px 25px 12px 40px;
            font-size: 1rem;
            color: #555;
            text-decoration: none;
            border-bottom: 1px solid rgba(0, 0, 0, 0.02);
        }

        /* New Refined UI Classes */
        .nav-btn-contact {
            border-radius: 0;
            font-weight: 600;
            background: var(--gradient-accent);
            border: none;
            font-family: "Archivo", sans-serif;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(253, 192, 25, 0.3);
            color: white !important;
        }

        .btn-premium-cta {
            background: var(--gradient-accent);
            color: white !important;
            padding: 12px 30px;
            border-radius: 50px !important;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(253, 192, 25, 0.4);
            transition: all 0.3s ease;
            text-transform: capitalize;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            margin-left: 15px;
        }

        .btn-premium-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(253, 192, 25, 0.6);
            color: white !important;
        }

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

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

        /* --- SLIDER STYLES --- */

        /* Custom Thumbnail Slider Indicators */

        #mainSlider .carousel-indicators {
            bottom: 30px;
            gap: 12px;
            /* Tighter gap for corporate feel */
            margin-bottom: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Increased specificity to override style.css */
        #mainSlider .carousel-indicators button[data-bs-target] {
            width: 75px !important;
            height: 75px !important;
            padding: 0;
            margin: 0;
            text-indent: 0;
            opacity: 0.3;
            /* Inactive: Soluk */
            border: 1px solid transparent;
            /* Prepare for border */
            background: #000;
            border-radius: 0 !important;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            flex: 0 0 auto;
        }

        #mainSlider .carousel-indicators button[data-bs-target] img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(100%);
            /* Inactive: Black & White */
            transition: all 0.3s ease;
        }

        /* Hover State */
        #mainSlider .carousel-indicators button[data-bs-target]:hover {
            opacity: 1;
            border-color: #fff;
            /* Hover: Border 1px White */
        }

        #mainSlider .carousel-indicators button[data-bs-target]:hover img {
            filter: grayscale(0%);
            /* Hover: Renkli */
        }

        /* Active State */
        #mainSlider .carousel-indicators button[data-bs-target].active {
            opacity: 1;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        #mainSlider .carousel-indicators button[data-bs-target].active img {
            filter: grayscale(0%);
            /* Active: Renkli */
        }

        /* Hide default pseudo elements if any from previous styles */
        #mainSlider .carousel-indicators button::after {
            display: none !important;
        }

        /* 
   Rapid Switch Mode 
   -----------------
   Activated via JS when hovering over indicators to ensure instant 
   responsiveness to user mouse movement.
*/
        #mainSlider.rapid-switch .carousel-item {
            transition: opacity 0.1s linear !important;
        }

        #mainSlider.rapid-switch .carousel-item img {
            transition: none !important;
            /* Disable Ken Burns effect during rapid switch */
        }

        /* --- COMPANY DIRECTORY STYLES --- */

        /* ========================================
   COMPANY DIRECTORY PAGE STYLES
======================================== */

        /* Page Header */
        .directory-header {
            padding: 100px 0 80px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .directory-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-siyah);
            opacity: 0.75;
            pointer-events: none;
        }

        .directory-title {
            font-size: 3.6rem;
            font-weight: 900;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
            letter-spacing: -1px;
        }

        .directory-header ul {
            position: relative;
            z-index: 1;
            padding: 0px !important;
            margin: 0px !important;
        }

        .directory-header ul li {
            display: inline-block;
            margin: 0px 15px;
            position: relative;
            line-height: 30px;
        }

        .directory-header ul li:first-child {
            padding-left: 35px;
            position: relative;
        }

        .directory-header ul li:first-child:before {
            position: absolute;
            content: "";
            width: 30px;
            height: 30px;
            left: 0px;
            top: 0px;
            background: url(../img/home.svg) no-repeat;
            background-size: cover;
            z-index: 1;
        }

        .directory-header ul li a {
            color: #FFF;
            text-decoration: none;
            font-weight: 400;
            font-size: 1rem;
        }

        /* Directory Grid */
        .directory-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            /* Slightly wider for info */
            gap: 20px;
            padding-bottom: 80px;
        }

        /* Company Card */
        .company-card {
            background: #fff;
            border: 1px solid rgba(0, 0, 0, 0.08);
            /* Slightly more visible border */
            border-radius: 5px;
            /* STRICT RULE: Max 5px */
            padding: 10px;
            /* STRICT RULE: 10px */
            display: flex;
            flex-direction: column;
            /* Vertical Layout */
            align-items: center;
            justify-content: flex-start;
            height: 100%;
            position: relative;
            transition: box-shadow 0.2s ease, border-color 0.2s ease;
            cursor: pointer;
            text-decoration: none;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
        }

        /* Logo Area */
        .company-card .logo-wrapper {
            width: 100%;
            height: 180px;
            /* Fixed height for consistency */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            margin-bottom: 15px;
            background: #fcfcfc;
            border-radius: 3px;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        .company-card img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.8;
        }

        /* Info Area */
        .company-info {
            text-align: center;
            width: 100%;
        }

        .company-title {
            font-family: "Archivo", sans-serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: #0a1628;
            margin-bottom: 10px;

            letter-spacing: 0.5px;
            line-height: 1.2;
        }

        .company-contact {
            display: flex;
            flex-direction: column;
            gap: 5px;
            font-size: 0.85rem;
            color: #666;
        }

        .company-contact i {
            color: var(--secondary-color, #fdc019);
            margin-right: 5px;
            width: 15px;
            text-align: center;
        }

        /* Hover Effects (Simplified) */
        .company-card:hover {
            border-color: var(--secondary-color, #fdc019);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: none;
            /* Removed scale transform */
        }

        .company-card:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .directory-grid {
                grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
                gap: 15px;
            }

            .company-card .logo-wrapper {
                height: 140px;
            }

            .directory-title {
                font-size: 2.2rem;
            }
        }

        /* --- COMPANY DETAIL STYLES --- */

        /* Scoped Variables for Company Detail Page to avoid conflicts */
        :root {
            --cd-primary-color: #363636;
            --cd-secondary-color: #fdc019;
            --cd-text-dark: #1f2937;
            --cd-text-gray: #6b7280;
            --cd-bg-light: #f3f4f6;
            --cd-white: #ffffff;
            --cd-border-radius: 5px;
            --cd-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --cd-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --cd-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        /* Wrapper to maintain the specific background color of the detail page */
        .company-detail-wrapper {
            background-color: #f5f5f5;
            padding: 60px 0;
            min-height: 80vh;
        }




        /* -----------------------------------------
   ORIGINAL DETAIL CSS BELOW 
   -----------------------------------------
*/

        /* Ana Konteyner - Sadece detay alanını kapsar */
        .listing-detail-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            background-color: transparent;
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }

        /* Üst Bilgi Kartı (Header) */
        .company-header-card {
            background-color: var(--cd-white);
            border-radius: var(--cd-border-radius);
            border: 1px solid #e5e7eb;
            padding: 32px;
            display: flex;
            align-items: center;
            gap: 32px;
            position: relative;
            overflow: hidden;
        }

        /* Dekoratif üst çizgi */
        .company-header-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--cd-primary-color);
        }

        .company-logo {
            width: 220px;
            aspect-ratio: 9 / 6;
            flex-shrink: 0;
            border-radius: var(--cd-border-radius);
            border: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8fafc;
            overflow: hidden;
        }

        .company-logo img {
            object-fit: contain;
        }

        .company-info-header {
            flex-grow: 1;
        }

        .company-name {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--cd-text-dark);
            margin-bottom: 12px;
            line-height: 1.2;
            font-family: 'Inter', sans-serif !important;
            /* Force Inter over global font */
            text-transform: none !important;
            /* Override global capitalize if needed */
        }

        .activity-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .tag {
            background-color: rgba(0, 0, 0, 0.075);
            color: var(--cd-primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 900;
            display: flex;
            align-items: center;
        }

        .tag a {
            color: #444;
            text-decoration: none;
        }

        .tag i {
            font-size: 0.75rem;
            margin-right: 10px;
        }

        .social-media-bar {
            display: flex;
            gap: 12px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 4px;
            background-color: #f3f4f6;
            color: var(--cd-text-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

        .social-btn:hover {
            background-color: var(--cd-primary-color);
            color: white;
        }

        /* Layout Grid: Sol (Bilgi) ve Sağ (Medya) */
        .content-grid {
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 24px;
        }

        /* Sol Sütun Kartları */
        .side-column {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .info-card {
            background-color: var(--cd-white);
            border-radius: var(--cd-border-radius);
            border: 1px solid #e5e7eb;
            padding: 24px;
        }

        .adress p {
            display: block;
            margin-bottom: 20px;
            line-height: 1.2 !important;
        }

        .description p {
            display: block;
            margin-bottom: 20px;
            line-height: 1.5 !important;
            font-size: 0.9rem;
        }

        .description h2,
        .description h3,
        .description h4,
        .description h5 {
            font-size: 1.2rem;
            display: block;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--cd-text-dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e5e7eb;
            font-family: 'Inter', sans-serif !important;
            text-transform: none !important;
        }

        .card-title i {
            color: var(--cd-primary-color);
        }

        .contact-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin: 0;
            padding: 0;
        }

        .contact-item {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .contact-icon {
            width: 40px;
            height: 40px;
            border-radius: 3px;
            background-color: #e0e7ff;
            color: var(--cd-primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1rem;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
        }

        .contact-label {
            font-size: 13px;
            line-height: 16px;
            color: var(--cd-text-gray);
            font-weight: 500;
        }

        .contact-value {
            font-size: 16px;
            line-height: 20px;
            font-weight: 500;
            color: var(--cd-text-dark);
            word-break: break-all;
            margin-top: 4px;
        }

        .contact-value a {
            color: var(--cd-text-dark);
            text-decoration: none;
            transition: color 0.2s;
        }

        .contact-value a:hover {
            color: var(--cd-primary-color);
        }

        .map-wrapper {
            width: 100%;
            height: 250px;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .map-wrapper iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Sağ Sütun (Ana İçerik) */
        .main-column {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .video-wrapper {
            position: relative;
            aspect-ratio: 16 / 9;
            width: 100%;
            border-radius: var(--cd-border-radius);
            overflow: hidden;
            border: 1px solid #e5e7eb;
        }

        .video-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Görseli kutuyu dolduracak şekilde kırpar */
            object-position: center;
            display: block;
        }


        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .gallery-item {
            aspect-ratio: 4/3;
            border-radius: 4px;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            cursor: pointer;
            transition: border-color 0.2s;
            position: relative;
        }

        .gallery-item:hover {
            border-color: #cbd5e1;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Responsive */
        @media (max-width: 992px) {
	        .slidertext h2 {
		        font-size: 2.6rem;
		        line-height: 1!important;
		        font-weight: 900;
	        }
	        .slidertext p {
		        display: block;
		        color: #FFF;
	        }
            .content-grid {
                grid-template-columns: 1fr;
            }

            .company-header-card {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }

            .activity-tags,
            .social-media-bar {
                justify-content: center;
            }
        }

        /* 
           ========================================
           OVERLAY NAVBAR SYSTEM
           Unifies Index2 and Hakkimizda style overlaps
           ======================================== 
        */
        @media (min-width: 992px) {
            body.overlay-nav-page .navbar {
                position: absolute !important;
                top: 50px;
                width: 100%;
                z-index: 1001;
                background-color: transparent !important;
                box-shadow: none !important;
                backdrop-filter: none !important;
                transition: all 0.3s ease;
            }

            body.overlay-nav-page .navbar .nav-link {
                color: rgba(255, 255, 255, 0.95) !important;
            }

            body.overlay-nav-page .navbar .nav-link:hover,
            body.overlay-nav-page .navbar .nav-link.active {
                color: var(--secondary-color) !important;
            }

            body.overlay-nav-page .navbar .brand-title {
                background: none !important;
                -webkit-text-fill-color: initial !important;
                color: #ffffff !important;
                text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            }

            /* Scrolled / Sticky State */
            body.overlay-nav-page .navbar.scrolled,
            body.overlay-nav-page .navbar.sticky-active {
                position: fixed !important;
                top: 0 !important;
                background-color: rgba(255, 255, 255, 0.98) !important;
                box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12) !important;
                backdrop-filter: blur(10px) !important;
                animation: slideDownNav 0.3s ease-out forwards;
            }

            body.overlay-nav-page .navbar.scrolled .nav-link,
            body.overlay-nav-page .navbar.sticky-active .nav-link {
                color: var(--primary-color) !important;
            }

            body.overlay-nav-page .navbar.scrolled .brand-title,
            body.overlay-nav-page .navbar.sticky-active .brand-title {
                background: var(--gradient-primary) !important;
                -webkit-background-clip: text !important;
                -webkit-text-fill-color: transparent !important;
                color: transparent !important;
                text-shadow: none !important;
                background-clip: text !important;
            }
        }

        /* Specific adjustment for inner page headers in overlay mode */
        body.overlay-nav-page .directory-header {
            padding-top: 180px !important;
            padding-bottom: 100px;
            margin-top: 0 !important;
        }

        @keyframes slideDownNav {
            from {
                transform: translateY(-100%);
            }

            to {
                transform: translateY(0);
            }
        }




        .iletisim {
            position: relative;
            display: block;
            padding: 100px 0px;
        }

        .form {
            position: relative;
            display: block;
            padding: 0px;
            margin: 0px;
            width: 100%;
        }

        .form i {
            position: absolute;
            z-index: 2;
            left: 2px;
            top: 20px;
            width: 40px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            border-left: 1px solid #DBDBDB;
            color: #02182a;
            transform: scale(-1, 1);
        }

        .iletisim .row,
        .iletisim .col-md-4 {
            padding: 0px !important;
            margin: 0px !important;
        }



        .iletisim input,
        .iletisim textarea {
            width: 100%;
            line-height: 30px;
            padding: 15px 20px 15px 50px;
            display: block;
            margin-bottom: 25px;
            border: 1px solid #f1f2f3;
            border-radius: 5px;
            font-weight: 900;
            position: relative;
        }

        .iletisim .islem {
            width: 120px !important;
            line-height: 60px !important;
            border: 0px !important;
            margin: 0px !important;
            display: inline-block !important;
            margin-right: 25px !important;
            text-align: center !important;
            background: #f1f2f3 !important;
            border-radius: 5px !important;
            font-weight: 900 !important;
            letter-spacing: -2px !important;
        }

        .iletisim .sonuc {
            width: calc(100% - 150px) !important;
            display: inline-block !important;
            margin: 0px !important;
            box-shadow: 0px 0px 0px 0px !important;
            padding: 15px 20px !important;
        }

        .iletisim .buton {
            background: #02182a;
            padding: 0px;
            margin: 0px;
            line-height: 62px;
            border: 0px;
            color: #FFF;
            font-weight: 900;
            letter-spacing: 1px;
        }



        .sube {
            width: 100%;
            display: block;
            margin-bottom: 50px;
        }

        .iletisim .sube h2,
        .iletisim h3 {
            font-size: 28px;
            font-weight: 900;
            color: #02182a;
            line-height: 1;
            display: block;
            margin-bottom: 30px;
        }

        .iletisim .sube p {
            position: relative;
            padding: 2px 0px 3px 40px;
            display: block;
            line-height: 20px;
            font-weight: 900;
            font-size: 18px;
            margin-bottom: 15px;
            color: #02182a;
            display: block;
        }

        .iletisim .sube span {
            display: block;
            font-weight: 400;
            line-height: 1.5;
            font-size: 16px;
            display: block;
            margin-bottom: 25px;
        }

        .iletisim .sube p i {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 25px;
            height: 25px;
            line-height: 25px;
            text-align: center;
            color: #06528f;
            font-size: 22px;
            display: block;
        }

        .iletisim .sube p.rfa-home {
            padding: 0px 0px 0px 40px !important;
            line-height: 20px;
            font-size: 16px;
        }

        .iletisim .iletisimformu h3 {
            font-size: 36px;
            line-height: 1;
            margin-bottom: 10px;
            font-weight: 900;
            color: #343434;
        }

        .iletisim .iletisimformu p {
            font-size: 16px;
            line-height: 1.4;
            margin-bottom: 20px;
            display: block;
        }

        .iletisimformu .row {
            margin: 0px -15px !important;
        }

        .haritalar {
            width: 100%;
            display: block;
            position: relative;
            padding: 0px;
            margin: 0px;
        }

        .haritalar .row,
        .haritalar .col-md-4 {
            padding: 0px !important;
            margin: 0px !important;
        }

        .harita {
            width: 100%;
            position: relative;
            height: 100%;
            display: block;
            background: #000;
        }

        .harita iframe {
            position: relative;
            display: block;
            border: 0px !important;
            ;
            height: 100% !important;
            width: 100% !important;
            padding: 0px !important;
            margin: 0px !important;
            mix-blend-mode: luminosity;
        }


        .fbox span {
            display: block;
            font-size: 1.4rem;
            color: #FFF;
            font-weight: 800;
            letter-spacing: -0.5px;
            line-height: 1;
            margin-bottom: 30px;
            position: relative;
        }

        .fbox span:before {
            position: absolute;
            content: "";
            width: 30px;
            height: 3px;
            border-radius: 2px;
            left: -5px;
            bottom: -10px;
            background: #FFF;
        }

        .filetisim ul,
        .filetisim ul li {
            padding: 0px;
            margin: 0px;
            font-weight: 4;
            font-size: 0.9rem;
            display: block;
            list-style: none;
        }

        .filetisim ul li {
            position: relative;
            line-height: 20px;
            margin-bottom: 15px;
            padding-left: 30px;
        }

        .filetisim ul li i {
            width: 20px;
            height: 20px;
            line-height: 20px;
            text-align: center;
            font-size: 1.2rem;
            position: absolute;
            left: 0px;
            top: 0px;
            color: var(--secondary-color);
        }

        .filetisim ul li a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
        }

        .flist ul,
        .flist ul li {
            padding: 0px;
            margin: 0px;
            list-style: none;
        }

        .flist ul li {
            margin-bottom: 5px;
            font-size: 0.9rem;
            display: block;
        }

        .flist ul li a {
            color: rgba(255, 255, 255, 0.5);
            line-height: 20px;
            padding-left: 15px;
            text-decoration: none;
            font-weight: 300;
            position: relative;
        }
        .flist ul li a:before {
	        position: absolute;
	        content: "";
	        width: 4px;
	        height: 4px;
	        background: var(--secondary-color);
	        left: 5px;
	        top: 7px;
        }
		.fhakkimizda p {
			font-size: 0.9rem;
			display: block;
			line-height: 1.7;
		}


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

        .uye {
            display: flex;
            align-items: center;
            justify-content: center;
        }

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



        .dikey {
            position: relative;
            top: 50%;
            transform: translateY(-50%);
        }



        .uyelerimiz {
            position: relative;
            display: block;
            padding: 75px 0px;
            background: rgba(0, 0, 0, 0.035);
        }

        .mainabout {
            position: relative;
            display: block;
            padding: 100px 0px;
        }

        .mainabout .dikey {
            padding-left: 60px;
        }

        .mainabout h3 {
            font-size: 3rem;
            display: block;
            padding-left: 50px;
            position: relative;
            font-weight: 800;
        }

        .mainabout h3:before {
            position: absolute;
            content: "";
            width: 45px;
            height: 2px;
            background: var(--primary-color);
            left: 0px;
            top: calc(50% - 1px);
        }

        .mainabout p {
            display: block;
            font-size: 1rem;
            line-height: 1.7;
            margin-top: 25px;
        }

        .nedenler {
            position: relative;
            display: block;
            padding: 100px 0px 0px;
        }

        .nedenler .neden {
            border-radius: 10px;
            padding: 25px 20px;
            background: rgba(54, 54, 54, 0.035);
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .nedenler .neden:hover {
            transform: translateY(-20px);
        }

        .nedenler .neden span {
            display: block;
            font-size: 1.3rem;
            line-height: 1;
            margin: 10px 0px 15px;
            font-weight: 800;
            color: #333;

        }

        .nedenler .neden p {
            display: block;
            line-height: 1.7;
            font-size: 0.95rem;
            padding: 0px !important;
            margin: 0px !important;
        }

        .nedenler .neden .nedenimg {
            display: block;
            width: 50px;
            height: 50px;
            padding: 6px;
            border-radius: 10px;
            background: var(--secondary-color);
            transition: all 0.4s ease;
        }

        .nedenler .neden:hover .nedenimg {
            transform: rotateY(360deg);
        }


        .counters {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        @media (max-width: 1380px) {
            .counters {
                grid-template-columns: repeat(4, 1fr);
            }
        }

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

        @media (max-width: 840px) {
            .counters {
                grid-template-columns: 2fr;
            }
        }

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

        .bolumbaslik {
            padding: 0px 10% 50px 10%;
        }

        .bolumbaslik span {
            position: relative;
            display: block;
            font-size: 3rem;
            margin-bottom: 25px;
            font-weight: 800;
            padding: 0px;
            line-height: 1;
        }

        .bolumbaslik span:before {
            position: absolute;
            content: "";
            width: 20px;
            height: 3px;
            left: 50%;
            margin-left: -21px;
            bottom: -10px;
            background: var(--primary-color);
        }

        .bolumbaslik span:after {
            position: absolute;
            content: "";
            width: 20px;
            height: 3px;
            left: 50%;
            margin-left: 1px;
            bottom: -10px;
            background: var(--secondary-color);
        }

        .bolumbaslik p {
            font-size: 1rem;
            display: block;
            line-height: 1.5;
        }

        .mainnews {
            position: relative;
            display: block;
            padding: 100px 0px 100px;
        }


        .blog {
            position: relative;
            display: block;
        }

        .blog .blogimg {
            width: 100%;
            border-radius: 5px;
            overflow: hidden;
            display: block;
            aspect-ratio: 9 / 5;
            background: rgba(54, 54, 54, 0.035);
        }

        .blog h3 {
            font-size: 1.4rem;
            display: block;
            line-height: 1.1;
            font-weight: 800;
            padding: 0px;
            margin: 15px 0px 10px;
        }

        .blog h3 a {
            color: #444;
            text-decoration: none;
        }

        .blog p {
            display: block;
            font-size: 1rem;
            line-height: 1.5;
            font-weight: 300;
            color: #666;
            padding: 0px;
            margin: 0px;
        }
        .blog .blogtext {
	        position: relative;
	        padding: 0px 20px;
        }
        
        
        
        .lang {
	        padding: 0px 0px 0px 50px;
	        margin: 0px!important;
	        line-height: 40px;
	        display: inline-block;
	        position: relative;
        }
        .lang:before {
	        position: absolute;
	        content: "";
	        width: 1px;
	        left: 25px;
	        top: 0px;
	        bottom: 0px;
	        background: rgba(0,0,0,0.1);
        }
        .lang li {
	        list-style: none;
	        line-height: 40px;
	        padding-right: 20px;
	        position: relative;
	        display: inline-block;
        }
        .lang li:last-child {
	        padding-right: 0px!important;
        }
        .lang li:before {
	        position: absolute;
	        content: "";
	        width: 5px;
	        height: 5px;
	        border-radius: 50%;
	        right: 5px;
	        top: 18px;
	        background: var(--secondary-color);
        }
        .lang li:last-child:before {
	        display: none;
        }
        .lang li a {
	        font-size: 0.9rem;
	        font-weight: 900;
	        text-decoration: none;
	        color: #444;
        }
        
        
        
.sayfa {
	position: relative;
	display: block;
	padding: 75px 0px;
}      
.sayfa p {
	display: block;
	font-size: 1rem;
	line-height: 1.6;
}  
.sayfa h2, .sayfa h3, .sayfa h4, .sayfa h5 {
	font-size: 1.2rem;
	display: block;
	line-height: 1;
	padding: 0px;
	margin: 0px 0px 15px 0px;
}




/* Kurumsal Sidebar Styling */
.wkurumsal {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.075);
    margin-bottom: 30px;
}

.wkurumsal h5 {
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--primary-color, #363636);
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.wkurumsal h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color, #fdc019);
}

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

.wkurumsal ul li {
    margin-bottom: 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.wkurumsal ul li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-left: 10px;
    position: relative;
}

.wkurumsal ul li a::before {
    content: '\f105';
    /* FontAwesome angle-right */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: -10px;
    opacity: 0;
    color: var(--secondary-color, #fdc019);
    transition: all 0.3s ease;
}

.wkurumsal ul li a:hover {
    color: var(--secondary-color, #fdc019);
    padding-left: 20px;
    background-color: #fcfcfc;
}

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


.uyeler {
	position: relative;
	display: block;
	padding: 50px 0px;
}
.uye {
	display: block;
	padding: 15px;
	border: 1px solid rgba(0,0,0,0.05);
	border-radius: 3px;
	transition: all 0.3s ease;
}
.uye:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}