/* GENEL AYARLAR */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #007bff; /* Turuncu tonu */
    --dark-bg: #111111;
    --light-bg: #f9f9f9;
    --text-color: #333333;
    --text-gray: #777777;
    --white: #ffffff;
}

body {
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.text-center {
    text-align: center;
}

/* BUTONLAR */
.btn-primary {
    background-color: #25d366;
    border-color: #25d366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
}

.btn-primary:hover {
    background-color: transparent;
    color: #25d366;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    display: inline-block;
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-bg);
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.section-title.title-white h2 {
    color: var(--white);
}
.section-title.title-white p {
    color: #cccccc;
}

/* TOP BAR */
.top-bar {
    background-color: #000000;
    color: #cccccc;
    font-size: 0.8rem;
    padding: 8px 0;
    border-bottom: 1px solid #222;
}

.top-bar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info span {
    margin-right: 20px;
}

.top-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.top-social a {
    color: #E1306C;
    margin-left: 15px;
}

.top-social a:hover {
    color: #C13584;
    transform: scale(1.1);
}

/* MAIN HEADER */
.main-header {
    background-color: rgba(17, 17, 17, 0.95);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    width: 100%;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100% !important;
    margin: 0;
    padding: 0 100px;
}
.logo-link{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
}
.lg{ width: 120px; height: 120px; object-fit: contain; margin-right: 12px; }
.logo-v { color: var(--white); font-weight: 700; font-size: 1.2rem; letter-spacing: 1px;}
.logo-t { color: var(--primary-color); font-weight: 800; font-size: 1.4rem; letter-spacing: 2px; text-align: center; margin-top: 2px; }
.logo-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}
.nav-menu{
    display: flex;
    align-items: center;
}
.nav-menu a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 24px;
    letter-spacing: 0.8px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu i {
    font-size: 0.7rem;
    margin-left: 3px;
}
.nav-menu a i{
    font-size: 12px;
    margin-left: 6px;
    color: var(--white);
    vertical-align: middle;
    display: inline-block;
}

.btn-quote-nav {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}
.btn-quote-nav:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* HERO SECTION */
.hero-section {
    position: relative;
    height: 89vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #dddddd;
}

.hero-buttons .btn-primary {
    margin-right: 15px;
}

/* Slider Okları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-arrow:hover {
    background: var(--primary-color);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

/* Sabit WhatsApp */
.whatsapp-fixed {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: #25d366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
}

/* HERO ALTINDAKİ ÖZELLİKLER */
.hero-features {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 17, 17, 0.9);
    z-index: 2;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}
/* HERO SLIDER GEÇİŞ AYARLARI */
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0; /* İçeriklerin ve overlay'in altında kalması için */
}

.hero-slide.active {
    opacity: 1;
}
.features-wrapper {
    display: flex;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: center;
    width: 23%;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 15px;
}

.feature-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.75rem;
    color: var(--text-gray);
}
/* MOBİL MENÜ VE HEADER DÜZENLEMELERİ */
.hamburger-btn {
    display: none;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

/* Küçük ekranlar için (Telefon görünümü) */
@media (max-width: 992px) {
    .header-wrapper{
        padding: 0 15px;
        justify-content: space-between;
        position: relative;
    }
    .header-right-actions{
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .btn-quote-nav{
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(17, 17, 17, 0.98);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        gap: 20px;
        transition: 0.3s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        z-index: 9999;
        overflow-y: auto;
    }

    /* JavaScript ile menü açıldığında bu sınıf eklenecek */
    .nav-menu.active {
        left: 0 !important;
    }
    .nav-menu a{
        font-size: 1.1rem;
        margin: 0;
        color: var(--white) !important;
        display: block;
    }
    .hamburger-btn {
        display: block; /* Mobilde hamburger ikonunu aktif et */
    }
    .lg{
        width: 55px;
        height: 55px;
        margin-right: 6px;
    }
    .logo-v {
        font-size: 0.85rem;
    }

    .logo-t {
        font-size: 1.05rem;
    }
}
/* HİZMETLERİMİZ BÖLÜMÜ */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.service-card {
    background: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 4px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.card-body {
    padding: 30px 20px;
    position: relative;
}

.card-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.card-body p {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    min-height: 75px;
    height: auto;
    overflow: visible;
}

.card-link {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 600;
}

.card-link i {
    font-size: 0.75rem;
    margin-left: 5px;
    transition: transform 0.2s;
}

.service-card:hover .card-link {
    color: var(--primary-color);
}

.service-card:hover .card-link i {
    transform: translateX(5px);
}
/* NEDEN VİZYON TENTE */
.why-us-section {
    background-color: var(--dark-bg);
    padding: 80px 0;
    color: var(--white);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.why-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.why-item p {
    font-size: 0.85rem;
    color: #aaaaaa;
}

/* TAMAMLANAN PROJELER */
.projects-section {
    padding: 80px 0;
}

.project-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #dddddd;
    padding: 8px 20px;
    margin: 0 5px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 45px;
}

.project-item {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}
.project-item.hide{
    display: none;
}
.project-item::before {
    content: '';
    position: absolute;
    top:0; left:0; width:100%; height:100%;
    opacity: 0;
    transition: 0.3s;
}

.project-item:hover::before {
    opacity: 1;
}

/* MÜŞTERİ YORUMLARI */
.testimonials-section {
    background-color: #161616;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 350px));
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background-color: #1f1f1f;
    padding: 30px;
    border-radius: 4px;
    position: relative;
    border: 1px solid #2a2a2a;
}

.stars {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.comment {
    color: #dddddd;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.user-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.user-info span {
    color: var(--text-gray);
    font-size: 0.75rem;
}

.quote-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 2rem;
    color: rgba(255,255,255,0.03);
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.dot {
    width: 25px;
    height: 4px;
    background-color: #333333;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 2px;
}

.dot.active {
    background-color: var(--primary-color);
}

/* CTA / ÜCRETSİZ KEŞİF SATIRI */
.cta-section {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('teklif\ arka.jpg');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: var(--white);
    border-top: 3px solid var(--primary-color);
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-left h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-left p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.cta-right {
    display: flex;
}

.cta-phone-item {
    display: flex;
    align-items: center;
    margin-left: 40px;
}

.cta-phone-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 15px;
}

.cta-phone-item span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.cta-phone-item strong {
    font-size: 1.1rem;
}

/* FOOTER */
.main-footer {
    background-color: #0b0b0b;
    color: #aaaaaa;
    padding: 70px 0 0 0;
    font-size: 0.85rem;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 350px 220px 220px 1fr;
    gap: 45px;
    align-items: flex-start;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaaaaa;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.about-col .logo {
    margin-bottom: 20px;
}
.contact-col{
    min-width: 320px;
}
.contact-col p {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-col p i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}
.map-col{
    grid-column: span 1;
}
.footer-map{
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    margin-top: 20px;
}
.footer-map iframe{
    width: 100%;
    height: 100%;
    border: 0;
}
.footer-bottom {
    border-top: 1px solid #151515;
    padding: 25px 0;
    font-size: 0.8rem;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
}

.bottom-links a {
    color: #777777;
    margin-left: 20px;
}

.bottom-links a:hover {
    color: var(--primary-color);
}
.social-col p{
    color: #aaaaaa;
    margin-bottom: 20px;
    font-size: 0.85rem;
}
.footer-social-icons{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.social-icon{
    display: inline-flex;
    align-items: center;
    background-color: #1a1a1a;
    color: var(--white);
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid #252525;
    width: fit-content;
}
.social-icon i{
    color: #E1306C;
    font-size: 1.2rem;
    margin-right: 10px;
}
.social-icon:hover{
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}
.social-icon:hover i{
    color: var(--white);
}
.footer-social-section{
    margin-top: 30px;
}
.footer-social-section p{
    color: #aaaaaa;
    margin-bottom: 15px;
    font-size: 0.85rem;
}
/* RESPONSIVE TASARIM (MOBİL UYUMLULUK) */
@media (max-width: 992px) {
    .hero-features, .top-bar { display: none; }
    .why-us-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
    .cta-wrapper { flex-direction: column; text-align: center; }
    .cta-right { flex-direction: column; margin-top: 30px; }
    .cta-phone-item { margin: 15px 0; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-col{
        text-align: center;
    }
    .about-col .logo{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .about-col p{
        max-width: 500px;
        margin: 20px auto;
    }
    .footer-social-section{
        text-align: center;
    }
    .footer-social-icons{
        align-items: center;
    }
    .social-icon{
        width: 220px;
        justify-content: center;
        border-radius: 8px;
    }
    .footer-grid{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .about-col{
        grid-column: 1 / 3;
    }
    .footer-col:nth-child(2){
        grid-column: 1;
    }
    .footer-col:nth-child(3){
        grid-column: 2;
    }
    .contact-col{
        background: #131313;
        padding: 25px;
        border-radius: 15px;
        border: 1px solid #202020;
        grid-column: 1 / 3;
        min-width: 100%;
    }
    .footer-map{
        margin-top: 20px;
        border-radius: 15px;
        overflow: hidden;
    }
    .contact-col p{
        align-items: flex-start;
        line-height: 1.8;
    }
    .footer-bottom-wrapper{
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
    }
    .bottom-links a{
        margin: 0 10px;
    }
}
/* Dropdown Kapsayıcı */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown İçerik (Gizli) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 240px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.3);
    z-index: 1000;
    top: 100%;
    left: 0;
    border-top: 2px solid var(--primary-color);
}

/* Linkler ve Düzen */
.dropdown-content a {
    color: white;
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    font-size: 0.8rem;
    transition: 0.3s;
    white-space: nowrap;
}

.dropdown-content a:hover {
    background-color: #333;
    color: var(--primary-color);
}

/* Hover olduğunda göster */
.dropdown:hover .dropdown-content {
    display: block;
}
/* Açılır menü içindeki görsellerin boyutu */
.dropdown-content .menu-img {
    width: 80px;       /* Görselin genişliği */
    height: 80px;      /* Görselin yüksekliği (kare olması için genişlikle aynı yapabilirsin) */
    object-fit: cover; /* Görselin orantısız sıkışmasını önler, alanı doldurur */
    border-radius: 4px;/* Köşeleri hafif yumuşatır */
    margin-right: 10px;/* Yazı ile görsel arasında boşluk bırakır */
    vertical-align: middle; /* Yazıyla aynı hizada durmasını sağlar */
}

/* Eğer görseller ve yazılar alt alta değil de yan yana düzgün dursun istersen */
.dropdown-content a {
    display: flex;
    align-items: center;
}
/* İÇ SAYFA BAŞLIK (PAGE HEADER) STİLİ */
.page-header-section {
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    text-align: center;
    color: #111111;
}

.page-header-section h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111111;
}

.page-header-section p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
}

/* PROJE / GALERİ IZGARASI (GRID) STİLİ */
.projects-grid-section {
    padding: 5px 0;
    background-color: #f9f9f9;
}

.projects-grid-title {
    text-align: center;
    margin-bottom: 40px;
}

.projects-grid-title h2 {
    font-size: 1.8rem;
    color: #111;
    margin-bottom: 10px;
}

.projects-grid-title p {
    color: #666;
    font-size: 0.95rem;
}

.projects-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.project-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-card-body {
    padding: 15px;
}

.project-card-body h3 {
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 5px;
}

.project-card-body p {
    font-size: 0.85rem;
    color: #666;
}

/* GALERİ ALTI TEKLİF KUTUSU */
.project-cta-box {
    margin-top: 50px;
    background: #111;
    color: white;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.project-cta-text {
    text-align: left;
}

.project-cta-text h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.project-cta-text p {
    color: #aaa;
    font-size: 0.85rem;
}
/* Video Kartı Tasarımı */
.video-card .video-container {
    width: 100%;
    height: 220px; /* Resimlerin yüksekliğiyle (220px) tam eşitlendi */
    background-color: #000;
    overflow: hidden;
}

.video-card .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videonun kenarlardan boşluk bırakmadan kutuyu doldurmasını sağlar */
    display: block;
}
/* MOBİLDE BAŞLIK VE AÇIKLAMAYI TEK SATIR YAPMA */
@media (max-width: 992px) {
    .page-header-section h1 {
        font-size: 1.35rem !important; /* Telefonda sığması için fontu küçültür */
        white-space: nowrap !important; /* Alt alta kırılmayı önleyip tek satırda tutar */
    }

    .page-header-section p {
        font-size: 0.85rem !important; /* Açıklama metnini tek satıra sığacak boyuta getirir */
        white-space: nowrap !important; /* Tek satırda kalmasını sağlar */
    }
}
/* HAKKIMIZDA SAYFASI ÖZEL STİLLERİ */
.about-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text-side h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text-side p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-mission-box {
    background: var(--dark-bg);
    border-radius: 6px;
    padding: 40px;
    color: var(--white);
    border-top: 3px solid var(--primary-color);
}

.about-mission-box h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.about-mission-box p {
    color: #ccc;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .about-main-grid {
        grid-template-columns: 1fr;
    }
}
/* KUMAŞ KATALOĞU YÖNLENDİRME BANNERI */
.catalog-banner-section {
    margin: 40px auto;
}

.catalog-banner-box {
    background: #ffffff;
    border-left: 2px solid var(--primary-color);
    padding: 30px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.catalog-banner-content h3 {
    color: #111111;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.catalog-banner-content h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.catalog-banner-content p {
    color: #666666;
    font-size: 0.95rem;
    margin: 0;
}

.catalog-banner-btn {
    white-space: nowrap;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .catalog-banner-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .catalog-banner-btn {
        width: 100%;
        text-align: center;
    }
}
/* AKAN REFERANS SLİDER TASARIMI */
html{
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
.references-section {
    padding: 250px 0;
    background: #f9fbfd;
    overflow: hidden;
}

.ref-slider-container {
    width: 100%;
    display: flex;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.ref-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollReferences 40s linear infinite;
}

.ref-track:hover {
    animation-play-state: paused; /* Üzerine gelince akış durur, böylece inceleyebilirler */
}

.ref-slide-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-left: 3px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 6px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.ref-slide-item span {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 3px;
    letter-spacing: 0.5px;
}

.ref-slide-item strong {
    font-size: 1rem;
    color: #111111;
}

/* Kaydırma Animasyonu */
@keyframes scrollReferences {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
