:root {
    --primary-color: #428cf8;    /* Ana mavi renk */
    --primary-hover: #2b7af7;    /* Hover için daha koyu ton */
    --secondary-color: #a8c9ff;  /* Açık mavi */
    --accent-color: #6ba4ff;     /* Orta ton mavi */
    --background-color: #f8fbff; /* Çok açık mavi-gri */
}

body {
    background-color: var(--background-color);
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
}

a {
    text-decoration: none;
}

/* Navbar Styles */
.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1020;
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-size: 1.5rem;
    font-weight: 300;
}

.navbar-nav {
    gap: 0.8rem;
}

.nav-link {
    color: #5D6D7E !important;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    padding: 0.4rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    width: 100%;
}

.navbar-brand small {
    font-weight: 400;
    transition: all 0.3s ease;
}

.navbar-brand:hover small {
    color: #666;
}

.navbar-nav .nav-item {
    margin: 0 0.5rem;
}

.navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}

.navbar-nav .nav-link.active {
    color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.1);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #0d6efd;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.navbar .btn {
    padding: 0.4rem 1rem;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.navbar .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.navbar .btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0b5ed7;
}

.navbar .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #000;
}

.navbar .btn-warning:hover {
    background-color: #ffca2c;
    border-color: #ffca2c;
    color: #000;
}

.navbar .d-flex.gap-2 {
    gap: 0.5rem !important;
}

/* Card Styles */
.card {
    transition: none !important;
    transform: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    border:0px;
}

.card-header {
    background: rgb(66 140 248 / 5%);
    border-bottom: 1px solid #e5e5e5;
}

.card-footer {
    background: rgb(66 140 248 / 5%);
    border-top: 1px solid #e5e5e5;
}

.card-header-title {
    color: #0d6efd;
}


    /* Keep hover effect only on home page */
.home-page .card {
    transition: all 0.3s ease;
}

.home-page .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.card-img-top {
    transition: all 0.5s ease;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 100, 145, 0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 100, 145, 0.2);
}

/* Form Styles */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 100, 145, 0.15);
}

.form-control,
.form-select {
    border: 1px solid rgba(26, 100, 145, 0.2);
    transition: all 0.3s ease;
}

.form-control:hover,
.form-select:hover {
    border-color: var(--primary-color);
}

/* Custom Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeIn 0.5s ease-out;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(-45deg, #f8fbff, #d8eaf5, #e8f4fa, #f0f7fb);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 80px 0;
    margin-bottom: 0;
    margin-top: 0 !important;
}

.hero-title {
    color: #666;
    font-weight: 300;
}

.hero-subtitle {
    color: #666;
    font-weight: 300;
}

.hero-vector {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.hero-vector svg {
    width: 100%;
    height: auto;
}

.hero-section .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hero-section .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-section .btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 100, 145, 0.15);
}

.hero-section .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-section .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 100, 145, 0.15);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Feature Cards */
.feature-card {
    padding: 3rem 0;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon svg {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.bg-primary .feature-title {
    color: white;
}

.bg-primary .feature-text {
    color: rgba(255, 255, 255, 0.8);
}

/* Feature Vector */
.feature-vector {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.feature-vector svg {
    width: 100%;
    height: auto;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--background-color) 100%);
    border-radius: 20px;
}

/* Placeholder Images */
.placeholder-image {
    background: rgb(66 140 248 / 13%);;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 8px;
    font-weight: 300;
}

/* Company Logo Placeholder */
.company-logo-placeholder {
    width: 150px;
    height: 150px;
    background: rgb(66 140 248 / 13%);;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 50%;
    margin: 0 auto;
}

/* Blog Image Placeholder */
.blog-image-placeholder {
    width: 100%;
    height: 250px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 8px 8px 0 0;
    font-weight: 300;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .display-4 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1rem;
    }

    .hero-section {
        padding: 40px 0;
    }
}

/* Container Override */
.container {
    max-width: 100% !important;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Section Spacing */
section {
    padding-left: 0;
    padding-right: 0;
}

/* Carousel Styles */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-color);
    padding: 1.5rem;
    border-radius: 50%;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: var(--primary-hover);
}

/* Company Card Styles */
.company-card {
    transition: all 0.3s ease;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    height: 100%;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 100, 145, 0.1) !important;
}

.company-logo-placeholder {
    width: 120px;
    height: 120px;
    background: rgb(66 140 248 / 13%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.company-card:hover .company-logo-placeholder {
    background-color: var(--primary-hover);
    transform: scale(1.1);
}

/* Popular Companies Section */
.popular-companies {
    background: linear-gradient(-45deg, #428cf8, #2b7af7, #428cf8, #2b7af7);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.popular-companies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.popular-companies .container {
    position: relative;
    z-index: 1;
}

.popular-companies h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Carousel Controls for Popular Companies */
.popular-companies .carousel-control-prev,
.popular-companies .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.popular-companies .carousel-control-prev:hover,
.popular-companies .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.popular-companies .carousel-control-prev-icon,
.popular-companies .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    padding: 8px;
}

/* Popular Companies Carousel */
.popular-companies .carousel-item .row {
    position: relative;
}

.popular-companies .carousel-item .col-md-3:nth-child(1),
.popular-companies .carousel-item .col-md-3:nth-child(4) {
    opacity: 0.7;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.popular-companies .carousel-item .col-md-3:nth-child(2),
.popular-companies .carousel-item .col-md-3:nth-child(3) {
    opacity: 1;
    transform: scale(1);
    transition: all 0.3s ease;
    z-index: 1;
}

.popular-companies .carousel-item .col-md-3:nth-child(2) .company-card,
.popular-companies .carousel-item .col-md-3:nth-child(3) .company-card {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.popular-companies .carousel-item .col-md-3:hover {
    opacity: 1;
    transform: scale(1);
}

/* Company Card Styles */
.popular-companies .company-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1.5rem !important;
    height: auto;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.popular-companies .company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.popular-companies .company-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.popular-companies .company-card .company-logo-placeholder {
    width: 100px;
    height: 100px;
    background: rgb(66 140 248 / 13%);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.popular-companies .company-card h5 {
    color: #0d2851;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-companies .company-card h5 a {
    color: #0d2851;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-companies .company-card h5 a:hover {
    color: var(--primary-color);
}

.popular-companies .company-card .categories {
    color: #428cf8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.popular-companies .company-card .address {
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    line-height: 1.4;
    flex-shrink: 0;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.popular-companies .company-card .address i {
    margin-right: 0.3rem;
    font-size: 0.8rem;
}

.popular-companies .company-card .city {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(102, 102, 102, 0.2);
    position: relative;
    z-index: 1;
}

.popular-companies .carousel-item.active {
    display: block;
}

.popular-companies .carousel-item {
    display: none;
    transition: opacity 0.6s ease-in-out;
}

/* New Companies Section */
.new-companies {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fbff 0%, #d9e8f0 100%);
    margin: 0;
}

.new-companies .company-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 1.5rem !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.new-companies .company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.new-companies .company-logo-placeholder {
    width: 100px;
    height: 100px;
    background: rgb(66 140 248 / 13%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.new-companies .company-card:hover .company-logo-placeholder {
    background: var(--primary-hover);
    transform: scale(1.1) rotate(5deg);
}

.new-companies .company-card h5 {
    color: #0d2851;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
    line-height: 1.4;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-shrink: 0;
}

.new-companies .company-card h5 a {
    color: #0d2851;
    text-decoration: none;
    transition: color 0.3s ease;
}

.new-companies .company-card h5 a:hover {
    color: var(--primary-color);
}

.new-companies .company-card .categories {
    color: #428cf8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.new-companies .company-card .card-content {
    flex: 1;
}

.new-companies .company-card .address-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #666;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.new-companies .company-card .address-section i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Topbar Styles */
.topbar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    padding: 16px 0;
    color: white;
    font-size: 0.9rem;
    position: relative;
    z-index: 1030;
}

.topbar a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.topbar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.topbar i {
    margin-right: 5px;
}

.topbar .contact-info {
    display: flex;
    gap: 20px;
}

.topbar .address {
    text-align: right;
}

/* Menu Bar Styles */
.menu-bar {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 16px 0;
}

.menu-bar .nav {
    gap: 2rem;
}

.menu-bar .nav-link {
    color: #5D6D7E !important;
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    position: relative;
}

.menu-bar .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.menu-bar .nav-link:hover::after {
    width: 100%;
}

.menu-bar .nav-link:hover,
.menu-bar .nav-link.active {
    color: var(--primary-color) !important;
}

.menu-bar .nav-link.active::after {
    width: 100%;
}

/* Search Box Styles */
.search-box {
    width: 100%;
    max-width: 500px;
}

.search-box .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-right: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 300;
    height: 38px;
}

.search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.search-box .btn {
    padding: 0 1.25rem;
    height: 38px;
    border-radius: 0 4px 4px 0;
}

.search-box .btn i {
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .search-box {
        max-width: 100%;
        margin: 1rem 0;
    }
}

/* Sectors Section */
.sectors .card {
    border: none;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.sectors .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 100, 145, 0.1);
}

.sectors .card i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.sectors .card:hover i {
    transform: scale(1.1);
    color: var(--primary-hover);
}

.sectors .card h6 {
    color: #5D6D7E;
    font-weight: 300;
    margin: 0;
}

/* Blog Posts */
.blog-posts {
    background: linear-gradient(135deg, #f8fbff 0%, #d9e8f0 100%);
    padding: 4rem 0;
}

.blog-image-placeholder {
    height: 200px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.blog-image-placeholder i {
    font-weight: 300;
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.company-logo-placeholder a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

/* Pagination Styles */
.pagination {
    gap: 0.5rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid rgba(66, 140, 248, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: rgba(66, 140, 248, 0.1);
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    border-color: rgba(66, 140, 248, 0.2);
    background-color: #f8f9fa;
}

/* Auth Card Styles */
.auth-card {
    max-width: 70%;
    margin: 0 auto;
}

.auth-card .card-body {
    padding: 2rem !important;
}

@media (max-width: 768px) {
    .auth-card {
        max-width: 100%;
    }
}

/* Banka Hesap Bilgileri Mobil Görünüm */
@media (max-width: 768px) {
    .table-responsive table {
        display: block;
    }
    
    .table-responsive thead {
        display: none;
    }
    
    .table-responsive tbody tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #dee2e6;
        border-radius: 0.25rem;
        padding: 1rem;
    }
    
    .table-responsive tbody td {
        display: block;
        text-align: left;
        padding: 0.5rem 0;
        border: none;
    }
    
    .table-responsive tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .table-responsive tbody td .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .table-responsive tbody td .d-flex .me-2 {
        margin-right: 0 !important;
        margin-bottom: 0.5rem;
    }
    
    .table-responsive tbody td .btn {
        margin-top: 0.5rem;
    }
}




.head-top-bar {
    display: none;
}

@media (min-width: 992px) {
    .head-top-bar {
        display: flex;
    }
}

