:root {
    --primary-color: #7030a0;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}



.backoffice-btn {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 10px 20px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 100%;
}

.backoffice-btn i {
    margin-right: 8px;
}

/* Main Header */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img {
    max-height: 50px;
}

.search-container {
    position: relative;
}

.search-box {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 30px;
    outline: none;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-right a {
    margin-left: 20px;
    color: var(--text-color);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-right a i {
    font-size: 20px;
    margin-right: 5px;
}

/* Main Navigation */
.main-nav {
    background-color: var(--primary-color);
}

.categories-button {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

.categories-button i {
    margin-right: 10px;
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li a {
    display: block;
    padding: 15px 20px;
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.main-menu li a:hover,
.main-menu li a.active {
    background-color: rgba(255,255,255,0.1);
}

/* Hero Section */
.hero-slider {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
    color: var(--light-text);
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.hero-btn:hover {
    background-color: #e08e0b;
    color: var(--light-text);
}

/* Product Categories */
.product-categories {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.category-img {
    height: 200px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.category-content {
    padding: 20px;
    text-align: center;
}

.category-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.category-content p {
    color: #777;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.btn-explore {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
}

.btn-explore:hover {
    background-color: #5b2681;
    color: var(--light-text);
}

/* Product Section */
.product-section {
    padding: 60px 0;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s;
}

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

.product-img {
   /* height: 200px;*/
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.product-content {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-price {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-left: 5px;
}

.product-btn {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
}

.product-btn:hover {
    background-color: #5b2681;
}

/* Company Philosophy */
.company-philosophy {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.philosophy-item {
    text-align: center;
    margin-bottom: 30px;
}

.philosophy-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.philosophy-text {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.feature-item {
    text-align: center;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-text {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* Call to Action */
.cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--light-text);
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.cta-btn:hover {
    background-color: #e08e0b;
    color: var(--light-text);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: #aaa;
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 10px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color:#7E7E7E;
}

.footer-title {
    color: var(--light-text);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--light-text);
}

.footer-contact {
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 16px;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        margin-left: 5%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .top-nav-links {
        display: none;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 48px;
    }
    
    .main-menu {
        flex-wrap: wrap;
    }
    
    .main-menu li {
        width: 50%;
    }
}

/* Promo Section */
.promo-section {
  
    background-image: url('/assets/imgs/promo-background.jpg');
    background-size: cover;
    background-position: center;
    height: 50px;
    text-align: left;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /**/ End of Selection */
}

    .promo-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.3);
    }

.promo-title {
    color:#fff;
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    margin: 0;
    padding-top:10px;
}



:root {
    --primary-color: #7030a0;
    --accent-color: #f39c12;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-color);
}



    .top-nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.top-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .top-nav-links li a {
        color: var(--light-text);
        text-decoration: none;
        padding: 10px 15px;
        display: inline-block;
        font-size: 14px;
    }

.backoffice-btn {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    padding: 10px 20px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 100%;
}

    .backoffice-btn i {
        margin-right: 8px;
    }

/* Main Header */
.main-header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-bottom: 1px solid #eee;
}

.header-logo {
    max-width: 200px;
    transition: max-width 0.3s ease;
}

.logo img {
    max-height: 60px;
    transition: max-height 0.3s ease;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

/* Hamburger Menu Button */
.hamburger-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .hamburger-menu:hover {
        background-color: rgba(112, 48, 160, 0.1);
    }

/* Account Button */
.account-btn {
    background-color: var(--primary-color);
    color: var(--light-text) !important;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .account-btn:hover {
        background-color: #5b2681;
        color: var(--light-text) !important;
        transform: translateY(-2px);
    }

    .account-btn i {
        font-size: 18px;
    }

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1050;
    transition: left 0.3s ease;
    overflow-y: auto;
}

    .mobile-sidebar.active {
        left: 0;
    }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    background-color: var(--primary-color);
    color: white;
}

    .sidebar-header .logo img {
        max-height: 40px;
    }

.close-sidebar {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.sidebar-nav {
    padding: 20px 0;
}

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

    .sidebar-nav li {
        border-bottom: 1px solid #f5f5f5;
    }

    .sidebar-nav a {
        display: flex;
        align-items: center;
        padding: 15px 20px;
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.3s ease;
        gap: 15px;
    }

        .sidebar-nav a:hover,
        .sidebar-nav a.active {
            background-color: rgba(112, 48, 160, 0.1);
            color: var(--primary-color);
        }

    .sidebar-nav i {
        width: 20px;
        text-align: center;
    }

.menu-divider {
    height: 1px;
    background-color: #eee;
    margin: 10px 0;
    list-style: none;
}

/* Sidebar Tabs */
.sidebar-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    background-color: #f8f9fa;
}

.tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 15px 10px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .tab-btn.active {
        color: var(--primary-color);
        background-color: #fff;
        border-bottom: 3px solid var(--primary-color);
    }

    .tab-btn:hover {
        background-color: #e9ecef;
    }

/* Tab Content */
.tab-content {
    display: none;
    padding: 0;
}

    .tab-content.active {
        display: block;
    }

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8px 12px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
        min-width: 60px;
    }

        .mobile-bottom-nav .nav-item i {
            font-size: 20px;
            color: #666;
            margin-bottom: 4px;
            transition: color 0.3s ease;
        }

        .mobile-bottom-nav .nav-item span {
            font-size: 11px;
            color: #666;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .mobile-bottom-nav .nav-item.active i,
        .mobile-bottom-nav .nav-item.active span {
            color: var(--primary-color);
        }

        .mobile-bottom-nav .nav-item:hover {
            transform: translateY(-2px);
        }

            .mobile-bottom-nav .nav-item:hover i,
            .mobile-bottom-nav .nav-item:hover span {
                color: var(--primary-color);
            }

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: 0;
    right: 8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Body padding for bottom nav */
@media (max-width: 767px) {
    body {
        padding-bottom: 80px;
    }
}

/* Main Navigation */
.main-nav {
    background-color: var(--primary-color);
}

.main-menu-container {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #eee;
    background-color: #fff;
    position: relative; /* z-index i�in gerekli */
    z-index: 1001; /* Di�er elementlerden �stte olmas�n� sa�lar */
}

.main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .main-menu li a {
        display: block;
        padding: 15px 20px;
        color: #6c757d;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
        position: relative;
    }

        .main-menu li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background-color: var(--primary-color);
            transition: width 0.3s;
        }

        .main-menu li a:hover::after,
        .main-menu li a.active::after {
            width: 80%;
        }

        .main-menu li a.active {
            color: var(--primary-color);
        }

.categories-button {
    background-color: transparent;
    color: #333;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
}

    .categories-button::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background-color: #0033cc;
        transition: width 0.3s;
    }

    .categories-button:hover::after {
        width: 80%;
    }

.categories-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
    padding: 20px;
}

    .categories-menu.active {
        display: block;
    }

.main-menu li {
    width: auto; /* Ensure each menu item takes full width */
}

    .main-menu li a {
        width: auto; /* Ensure each link takes full width */
    }

.main-menu .menu-item-has-children {
    position: relative;
}

    .main-menu .menu-item-has-children:hover .categories-menu-v2 {
        display: block;
    }

.categories-menu-v2 {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px; /* Geni�li�i dikey liste i�in ayarlad�m */
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    display: none;
    padding: 20px;
    border-radius: 0 0 8px 8px; /* Alt k��eleri yuvarlatt�m */
}

.category-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

    .category-item:hover {
        border-color: var(--primary-color);
        background-color: #f8f8f8;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .category-item i {
        font-size: 24px;
        margin-right: 15px;
        color: var(--primary-color);
    }

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    object-position: center;
}



.hero-slider .slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    margin-top: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 10%;
    color: var(--light-text);
    padding: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 80px;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.hero-btn {
    background-color: #f39c12;
    color: #fff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

    .hero-btn:hover {
        background-color: #e08e0b;
        color: #fff;
    }

.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
}

.hero-nav-button {
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

    .hero-nav-button:hover {
        background-color: #fff;
        color: #0033cc;
    }

/* Approach Slider Styles */
.approach-slider {
    position: relative;
    background-image: url('/assets/imgs/approach_background.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    overflow: hidden;
}

.approach-slide {
    display: none;
}

    .approach-slide.active {
        display: flex;
    }

.approach-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.approach-content {
    padding: 30px;
}

.approach-title {
    font-size: 36px;
    color: #0033cc;
    margin-bottom: 20px;
}

.approach-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .slider-dot.active {
        background-color: #0033cc;
    }

.approach-nav-button {
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 20;
}

    .approach-nav-button:hover {
        background-color: #fff;
        color: #0033cc;
    }

/* Product Categories */
.product-categories {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
        display: inline-block;
        margin-bottom: 15px;
    }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

.category-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

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

.category-img {
    height: 200px;
    overflow: hidden;
}

    .category-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

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

.category-content {
    padding: 20px;
    text-align: center;
}

    .category-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .category-content p {
        color: #777;
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.6;
    }

.btn-explore {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
}

    .btn-explore:hover {
        background-color: #5b2681;
        color: var(--light-text);
    }

/* Product Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.product-tab {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

    .product-tab.active {
        color: #0033cc;
    }

        .product-tab.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 3px;
            background-color: #0033cc;
        }

    .product-tab img {
        width: 30px;
        margin-right: 10px;
    }

.product-content {
    display: none;
    background-image: url('/assets/imgs/product_background.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    padding: 20px;
}

    .product-content.active {
        display: block;
    }

.product-image {
    width: 100%;
    height: auto;
}

.product-description {
    padding: 30px;
}

.product-title {
    font-size: 36px;
    color: #0033cc;
    margin-bottom: 20px;
}

.product-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.navigation-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.nav-button {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--primary-color), #c8a2c8);
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .nav-button:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

/* Company Philosophy */
.company-philosophy {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.philosophy-item {
    text-align: center;
    margin-bottom: 30px;
}

.philosophy-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.philosophy-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.philosophy-text {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
}

/* Call to Action */
.cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--light-text);
    text-align: center;
}

.cta-title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: var(--accent-color);
    color: var(--light-text);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

    .cta-btn:hover {
        background-color: #e08e0b;
        color: var(--light-text);
    }




/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        margin-left: 5%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .top-nav-links {
        display: none;
    }

    .main-menu-container {
        display: none;
    }

    .hero-slider {
        height: 400px;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
        padding: 20px;
        max-width: 100%;
        margin-left: 0;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .hero-subtitle {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .main-menu {
        flex-wrap: wrap;
    }

        .main-menu li {
            width: 50%;
        }

    /* Mobile Header Adjustments */
    .header-logo {
        max-width: 150px;
    }

    .logo img {
        max-height: 50px;
    }

    .account-btn {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }

    .hero-content {
        padding: 15px;
    }

    .hero-title {
        font-size: 20px;
    }

    .hero-subtitle {
        font-size: 28px;
    }

    .hero-description {
        font-size: 12px;
    }

    .header-logo {
        max-width: 120px;
    }

    .logo img {
        max-height: 40px;
    }

    .account-btn {
        padding: 6px 10px;
    }
}




@media (max-width: 767px) {
    .promo-title {
        font-size: 13px;
    }
}

/* Event Section */
.event-section {
    padding: 60px 0;
}

/* Swiper Event Slider Styles */
.event-swiper {
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.event-card-inner {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

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

.event-img {
    height: 200px;
    overflow: hidden;
}

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

.event-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .event-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .event-content p {
        color: #777;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 15px;
    }

.btn-details {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

    .btn-details:hover {
        background-color: #5b2681;
        color: var(--light-text);
    }

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 18px;
    }

/* Swiper Pagination */
.swiper-pagination-bullet {
    background-color: var(--primary-color);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 60%;
    max-width: 800px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

#modalImage {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

    .close-button:hover,
    .close-button:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }




/* Footer Responsive Düzenlemeleri */
@media (max-width: 767px) {
    .footer .row > div {
        margin-bottom: 30px;
    }
    
    /* Kurumsal ve Ürünlerimiz sütunlarını yan yana yapmak için */
    .footer .col-lg-2.col-md-6.col-sm-6 {
        width: 50%;
        float: left;
        padding: 0 15px;
    }
    
    /* Bülten aboneliği sütununu tam genişlik yapmak için */
    .footer .col-lg-4.col-md-6.bultenSubscription {
        width: 100%;
        clear: both;
        margin-top: 20px;
        display: none;
    }
    
    /* Logo ve iletişim bilgileri sütununu tam genişlik yapmak için */
    .footer .col-lg-4.col-md-12.col-sm-12 {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranlarda sütunları alt alta yapmak için */
    .footer .col-lg-2.col-md-6.col-sm-6 {
        width: 50%;
        float: none;
        margin-bottom: 20px;
    }
}


