/* Modern CSS for {{ company.name }} Django Project */

/* Arama Butonu */
.search-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 16px !important;
    font-size: 0.9rem;
    border-radius: 6px !important;
    transition: all 0.3s ease;
    min-width: 80px;
    justify-content: center;
}

.search-btn:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow-color);
}

.search-text {
    font-weight: 500;
}

/* Dil Seçici */
.language-selector {
    position: relative;
}

.language-nav-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 14px 18px !important;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.language-nav-link:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.language-nav-link:focus {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.language-dropdown {
    min-width: 140px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.9);
}

.language-form {
    margin: 0;
    padding: 0;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: #fff;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.language-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.2);
    color: var(--primary-color);
}

.language-item.active {
    background-color: var(--primary-color);
    color: white;
}

.language-item.active:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
}

/* Mobil arama butonu */
@media (max-width: 768px) {
    .search-btn {
        padding: 8px 12px !important;
        font-size: 0.85rem;
        min-width: 70px;
    }
    
    .search-text {
        font-size: 0.85rem;
    }
}

/* Çok küçük ekranlar için arama butonu */
@media (max-width: 576px) {
    .search-text {
        display: none;
    }
    
    .search-btn {
        padding: 10px !important;
        border-radius: 50% !important;
        min-width: 40px;
        width: 40px;
        height: 40px;
    }
}

/* Mobil dil seçici */
@media (max-width: 768px) {
    .language-selector {
        margin-left: 10px;
    }
    
    .language-nav-link {
        padding: 10px 12px !important;
        font-size: 0.9rem;
    }
    
    .flag-icon {
        width: 18px;
        height: 13px;
    }
    
    .language-dropdown {
        min-width: 120px;
    }
    
    .language-item {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 576px) {
    .language-nav-link span {
        display: none;
    }
    
    .language-nav-link {
        padding: 10px !important;
        border-radius: 50% !important;
        min-width: 40px;
        justify-content: center;
    }
    
    .language-item span {
        font-size: 0.85rem;
    }
}

/* CSS Variables */
:root {
    --primary-color: #e84700;
    --secondary-color: #e95e1d;
    --dark-color: #333;
    --light-color: #f8f8f8;
    --white: #ffffff;
    --text-color: #606577;
    --border-color: #ddd;
    /* Tema değişkenleri base.html'de override edilecek */
}

/* General Styles */
body {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    line-height: 1.846;
    color: var(--text-color);
    padding-top: 70px; /* Fixed navbar için */
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h2 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.25rem;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #929292;
    line-height: 1.6;
}

/* Modern Navbar Styles */
#mainNav {
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1030;
    transition: background-color 0.3s ease;
    backdrop-filter: blur(10px);
    padding: 14px 0; /* navbar dikey boşluk */
}

#mainNav .navbar-brand img {
    height: 48px; /* logo boyutu */
    transition: transform 0.3s ease;
}

#mainNav .navbar-brand:hover img {
    transform: scale(1.05);
}

#mainNav .nav-link {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 15px;
    transition: color 0.3s ease;
    position: relative;
    padding-top: 14px;   /* linklerin dikey alanı */
    padding-bottom: 14px;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: var(--primary-color);
}

/* Active top-level item with orange background */
#mainNav .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white) !important;
    border-radius: 6px;
}

#mainNav .nav-link.active::after { content: none; }

#mainNav .dropdown-menu {
    background-color: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    animation: dropdownFade 150ms ease;
}

#mainNav .dropdown-item {
    color: var(--white);
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 12px 20px;
    display: flex;
    align-items: center; /* dikey ortalama */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

#mainNav .dropdown-item i {
    display: flex;
    align-items: center;
    width: 1.25rem;
    justify-content: center;
    font-size: 1rem;
}

#mainNav .dropdown-item:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Thin orange separators between submenu items (her seviyede tutarlı) */
#mainNav .dropdown-menu > .dropdown-item {
    position: relative;
    border-bottom: 2px solid rgba(var(--primary-color-rgb), 0.5);
}

#mainNav .dropdown-menu > .dropdown-item:last-of-type {
    border-bottom: none; /* son öğeden sonra çizgi yok */
}

/* Aktif alt menü vurgusu */
#mainNav .dropdown-item.active,
#mainNav .dropdown-item:active {
    background-color: transparent;
    color: var(--primary-color);
    position: relative;
}

#mainNav .dropdown-item.active::after {
    content: '';
    position: absolute;
    left: 20px;
    bottom: 6px;
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Scroll gölge/arka plan güçlendirme */
#mainNav.nav-scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 6px 16px rgba(0,0,0,0.35);
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Multilevel dropdown support */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Remove default caret/chevrons inside nested dropdown links to avoid stray lines */
.dropdown-menu > .dropdown-submenu > a::after,
#mainNav .dropdown-submenu > .dropdown-item.dropdown-toggle::after {
    content: none !important;
    display: none !important;
}

/* Hero Slider Styles */
/* ============================================
   HERO SLIDER - Tüm stiller home.html'de inline
   Progress bar kodları kaldırıldı (çakışma önlendi)
   ============================================ */

.hero-buttons .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color-dark);
}

.hero-buttons .btn-outline-light {
    border-color: var(--white);
    color: var(--white);
}

.hero-buttons .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Floating Icons in Slider */

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.floating-icon {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    max-width: 210px; /* 3x daha büyük tablet için alan aç */
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

.mobile-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(3.2) !important; /* daha dengeli boyut */
    animation-delay: 0s;
    z-index: 10 !important;
    position: absolute !important;
}

.html-icon {
    bottom: 12%;
    left: 20%;
    animation-delay: 1s;
    max-width: 100px;
    z-index: 15 !important;
    animation: slideInFromLeft 1s ease-out 1s both, float 6s ease-in-out infinite 2s;
}

.css-icon {
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
    max-width: 100px;
    z-index: 15 !important;
    animation: slideInFromTop 1s ease-out 2s both, floatCenter 6s ease-in-out infinite 3s;
}

.js-icon {
    bottom: 12%;
    right: 20%;
    animation-delay: 3s;
    max-width: 100px;
    z-index: 15 !important;
    animation: slideInFromRight 1s ease-out 3s both, float 6s ease-in-out infinite 4s;
}

@keyframes slideInFromTop {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes floatCenter {
    0% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-20px); }
    100% { transform: translateX(-50%) translateY(0px); }
}

/* Slider Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations to slider content */
.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    animation: slideInFromLeft 1s ease-out;
}

.hero-images {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInFromRight 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1.2s ease-out 0.3s both;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease-out 0.6s both;
    color: #ffffff;
    font-weight: 600;
}

.hero-buttons {
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

/* Diğer slide'lar için animasyonlu içerik */
.hero-animation {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInFromRight 1s ease-out;
}

.animation-image {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.35));
    border-radius: 15px;
}

.fade-zoom-in {
    animation: fadeZoomIn 1.2s ease-out both;
}

.slide-in-right {
    animation: slideInFromRight 1s ease-out both;
}

.slide-in-left {
    animation: slideInFromLeft 1s ease-out both;
}

@keyframes fadeZoomIn {
    0% { opacity: 0; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1); }
}
.hero-content-full {
    position: relative;
    z-index: 10;
    color: var(--white);
    animation: slideInFromLeft 1s ease-out;
    text-align: center;
    padding: 60px 0;
}

.hero-content-full .hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInDown 1.2s ease-out 0.3s both;
    color: var(--primary-color);
}

.hero-content-full .hero-description {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInUp 1.2s ease-out 0.6s both;
    color: #ffffff;
    font-weight: 600;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-full .hero-buttons {
    animation: fadeInUp 1.2s ease-out 0.9s both;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(var(--primary-color-rgb), 0.3), var(--primary-color), var(--secondary-color), rgba(var(--primary-color-rgb), 0.3), transparent);
    margin: 15px auto 0;
    border-radius: 2px;
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.6;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.15);
    }
}

/* Who We Are Section */
.who-we-are {
    background-color: var(--light-color);
}

.who-we-are-content {
    padding-top: 60px;
}

section.who-we-are .col-md-3 .fa,
section.who-we-are .col-md-3 .fa-brands,
section.who-we-are .col-md-3 .fa-solid,
section.who-we-are .col-md-3 .fa-regular {
    font-size: 25px;
    color: var(--primary-color);
    margin: 0 auto;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    line-height: 80px;
    cursor: pointer;
    transition: all ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.who-we-are .col-md-3 .fa:hover,
section.who-we-are .col-md-3 .fa-brands:hover,
section.who-we-are .col-md-3 .fa-solid:hover,
section.who-we-are .col-md-3 .fa-regular:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border: 1px solid var(--secondary-color);
    transform: scale(1.1);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.who-we-are-content h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark-color);
}

/* Category Buttons */
.category-buttons {
    margin-bottom: 30px;
}

.category-buttons .btn {
    margin: 5px;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-buttons .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.category-buttons .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.category-buttons .btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.category-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* Portfolio Section */
.portfolio {
    background-color: var(--light-bg-color);
}

.portfolio-content .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.portfolio-content .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.portfolio .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Portfolio Column */
.portfolio-col {
    transition: all 0.5s ease;
}

/* Portfolio Category Band */
.portfolio-category-band {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 10px 10px;
    z-index: 3;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-category-band {
    opacity: 0;
}
/* Portfolio Details Button */
.btn-details {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-details:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 1);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><filter id="blur"><feGaussianBlur stdDeviation="2"/></filter></defs><rect width="100" height="100" fill="%23333" filter="url(%23blur)"/></svg>') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.quote-section .container {
    position: relative;
    z-index: 2;
}

.quote-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.quote-divider {
    position: relative;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-line {
    width: 100px;
    height: 2px;
    background: white;
    position: relative;
}

.divider-circle {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.quote-text {
    font-size: 1.2rem;
    color: white;
    font-style: italic;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Responsive Quote Section */
@media (max-width: 768px) {
    .quote-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .divider-line {
        width: 80px;
    }
}

.portfolio-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow-color-dark);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.9), rgba(var(--secondary-color-rgb), 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    text-align: center;
    color: var(--white);
    padding: 20px;
}

.portfolio-content h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.portfolio-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* Testimonial Section */
.testimonial {
    background: linear-gradient(135deg, var(--dark-color), #444);
    color: var(--white);
    position: relative;
    padding: 40px 0;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

/* Testimonial Background with Overlay */
.testimonial-bg {
    position: relative;
    padding-bottom: 120px !important; /* Indicator için ekstra padding */
}

.testimonial-bg .container {
    position: relative;
    z-index: 2;
}

.testimonial-title {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 50px;
}

.testimonial-title::after {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), var(--primary-color), var(--secondary-color), rgba(255,255,255,0.3), transparent);
}

.testimonial-item {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-avatar-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-avatar-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 0;
    filter: blur(12px);
}

.testimonial-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
}

.testimonial-avatar.bg-info {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #17a2b8;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.95) !important;
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    padding: 0 60px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -30px;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.testimonial-company {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-size: 1.2rem;
}

.testimonial-rating .fa-star {
    color: #ffc107;
}

.testimonial-rating .fa-star-o {
    color: #ddd;
}

/* Premium Testimonial Slider - Artık home.html inline stillerinde */
/* Responsive Testimonial */
@media (max-width: 768px) {
    .testimonial-title {
        margin-bottom: 40px;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        padding: 0 30px;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .testimonial-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .testimonial-avatar {
        width: 80px;
        height: 80px;
    }
    
    .testimonial-name {
        font-size: 1.2rem;
    }
    
    .testimonial-company {
        font-size: 0.95rem;
    }
}

/* Blog Section */
.blog {
    background-color: var(--light-color);
}

/* Blog - Birincil buton (default: beyaz iç, turuncu yazı) */
.blog .btn-primary {
    background-color: #ffffff !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* Hover / Focus / Active: turuncu iç, beyaz yazı */
.blog .btn-primary:hover,
.blog .btn-primary:focus,
.blog .btn-primary:active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.blog-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

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

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

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

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    min-width: 60px;
}

.blog-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.6;
}

.blog-meta .blog-views {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Footer */
footer {
    background-color: #2a2a2a;
    color: #eee;
    padding-top: 60px;
    margin-top: 80px;
}

.footer-wrapper {
    padding-bottom: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-wrapper img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-wrapper .footer-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bbb;
}

.footer-wrapper .footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    height: 30px;
}

.footer-wrapper .footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
}

.footer-wrapper .footermenu,
.footer-wrapper .footercontact {
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
}

.footer-wrapper .footermenu li,
.footer-wrapper .footercontact li,
.footer-wrapper .footerblog li {
    list-style: none;
    margin-bottom: 10px;
    padding-left: 0;
}

.footer-wrapper .footermenu a,
.footer-wrapper .footercontact a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-wrapper .footermenu a:hover,
.footer-wrapper .footercontact a:hover {
    color: var(--primary-color);
}

.footer-wrapper .footercontact li i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-wrapper .footerblog li a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.footer-wrapper .footerblog li p {
    font-size: 0.85rem;
    color: #bbb;
    margin-bottom: 0;
}

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px 0;
    border-top: 1px solid #444;
    opacity: 1;
}

.footer-bottom .container-fluid {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #888;
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Footer Social Links */
.footer-social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.footer-social .social-link,
.footer-social .back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social .social-link:hover,
.footer-social .back-to-top:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

.footer-social .social-link i,
.footer-social .back-to-top i {
    font-size: 16px;
}

/* Footer Map */
.footer-map {
    margin-top: 0;
    padding-top: 0;
    padding-left: 0;
}

.footer-map iframe {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Back to Top Button (Fixed Position) */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Back to Top Button - Footer Bottom Overlap Fix */
@media (min-width: 768px) {
    .back-to-top {
        bottom: 80px; /* Footer bottom height + margin */
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
    backdrop-filter: blur(10px);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: cookiePulse 2s infinite;
}

@keyframes cookiePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.cookie-text p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 100px;
    justify-content: center;
}

.cookie-accept {
    background: var(--primary-color);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.4);
}

.cookie-decline {
    background: transparent;
    color: #ccc;
    border: 2px solid var(--text-color);
    opacity: 0.5;
}

.cookie-decline:hover {
    background: var(--text-color);
    opacity: 0.7;
    color: white;
    transform: translateY(-2px);
}

.cookie-info {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cookie-info:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        min-width: auto;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 80px;
    }
}

/* Loader */
.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #fff;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    opacity: 1;
    visibility: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: url('/static/img/logo/favicon.png') center center no-repeat;
    background-size: contain;
    z-index: 1;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    /* Footer Responsive */
    footer .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    footer .footer-map iframe {
        height: 150px;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .floating-icon {
        max-width: 100px;
    }
    
    .portfolio-image img,
    .blog-image img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .portfolio-image img,
    .blog-image img {
        height: 150px;
    }
    
    .blog-content {
        padding: 20px;
    }
}

/* Placeholder Image Styles */
.placeholder-image {
    height: 200px;
    width: 100%;
    border-radius: 8px;
}

.portfolio-image .placeholder-image {
    height: 250px;
}

.blog-image .placeholder-image {
    height: 200px;
}

/* Blog category badges */
.blog-category-badges {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    display: flex !important;
    gap: 8px !important;
    z-index: 1 !important;
    margin-bottom: 15px !important;
}

.blog-category-badges .badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.blog-category-badges .badge.bg-outline-primary {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.1);
}

.testimonial-avatar.placeholder-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
}

/* Services Section - New Design */
.services-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.services-grid {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.services-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px var(--shadow-color);
    animation: pulse 2s infinite;
}

.hub-content {
    text-align: center;
    color: white;
}

.hub-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.hub-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hub-content p {
    font-size: 12px;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 8px;
    color: white !important;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.service-card {
    position: absolute;
    background: var(--light-bg-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: all 0.3s ease;
    max-width: 520px;
    width: 520px;
    height: 130px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color-dark);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
    overflow: hidden;
}

.service-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.2;
}

.service-content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.service-content h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.service-content h5 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content p {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* Position service cards around the hub */
.service-1 {
    top: 10%;
    left: 10%;
}

.service-2 {
    top: 25%;
    left: 5%;
}

.service-3 {
    top: 40%;
    left: 10%;
}

.service-4 {
    top: 10%;
    right: 10%;
}

.service-5 {
    top: 25%;
    right: 5%;
}

.service-6 {
    top: 40%;
    right: 10%;
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .services-hub {
        width: 160px;
        height: 160px;
    }
    
    .hub-icon {
        font-size: 35px;
    }
    
    .hub-content h3 {
        font-size: 16px;
    }
    
    .service-card {
        max-width: 250px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        min-height: 500px;
    }
    
    .services-hub {
        width: 140px;
        height: 140px;
    }
    
    .hub-icon {
        font-size: 30px;
    }
    
    .hub-content h3 {
        font-size: 14px;
    }
    
    .service-card {
        max-width: 460px;
        width: 460px;
        height: 120px;
        padding: 18px;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        gap: 15px;
        overflow: hidden;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        min-height: auto;
        padding: 40px 0;
    }
    
    .services-hub {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
    }
    
    .service-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        max-width: 100%;
        width: 100%;
    }
}

.title-decoration {
    margin: 10px 0 30px 0;
    position: relative;
}

.decoration-line {
    display: none;
}

.decoration-circles {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.decoration-circles::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
    z-index: 1;
}

.decoration-circles .circle {
    width: 12px;
    height: 12px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.services-container {
    position: relative;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-phone {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px var(--shadow-color);
    position: relative;
    overflow: hidden;
}

.central-phone::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 3s linear infinite;
}

.central-phone::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-color);
}

.central-logo {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.central-tagline {
    font-size: 10px;
    opacity: 0.8;
    margin-bottom: 10px;
}

.central-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.services-radial-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.service-item {
    position: absolute;
    display: flex;
    align-items: center;
    max-width: 300px;
    z-index: 5;
}

.service-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 0 15px;
    flex: 1;
}

.service-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.service-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.service-description {
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

.service-icon-circle {
    width: 60px;
    height: 60px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-icon-circle:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px var(--shadow-color-light);
}

.connection-line {
    position: absolute;
    background: repeating-linear-gradient(
        90deg,
        #ddd,
        #ddd 10px,
        transparent 10px,
        transparent 20px
    );
    height: 2px;
    z-index: 1;
}

/* Position services around the phone */
.service-1 {
    top: 5%;
    left: 5%;
    flex-direction: row;
}

.service-1 .connection-line {
    width: 180px;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
}

.service-2 {
    top: 20%;
    left: 5%;
    flex-direction: row;
}

.service-2 .connection-line {
    width: 160px;
    top: 50%;
    right: -160px;
    transform: translateY(-50%);
}

.service-3 {
    top: 35%;
    left: 5%;
    flex-direction: row;
}

.service-3 .connection-line {
    width: 140px;
    top: 50%;
    right: -140px;
    transform: translateY(-50%);
}

.service-4 {
    top: 5%;
    right: 5%;
    flex-direction: row-reverse;
}

.service-4 .connection-line {
    width: 180px;
    top: 50%;
    left: -180px;
    transform: translateY(-50%);
}

.service-5 {
    top: 20%;
    right: 5%;
    flex-direction: row-reverse;
}

.service-5 .connection-line {
    width: 160px;
    top: 50%;
    left: -160px;
    transform: translateY(-50%);
}

.service-6 {
    top: 35%;
    right: 5%;
    flex-direction: row-reverse;
}

.service-6 .connection-line {
    width: 140px;
    top: 50%;
    left: -140px;
    transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .central-phone {
        width: 180px;
        height: 180px;
    }
    
    .central-logo {
        font-size: 16px;
    }
    
    .central-tagline {
        font-size: 9px;
    }
    
    .central-title {
        font-size: 11px;
    }
    
    .service-item {
        max-width: 250px;
    }
    
    .service-content {
        padding: 15px;
    }
    
    .service-icon-circle {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .services-container {
        min-height: 700px;
    }
    
    .central-phone {
        width: 160px;
        height: 160px;
    }
    
    .central-logo {
        font-size: 14px;
    }
    
    .central-tagline {
        font-size: 8px;
    }
    
    .central-title {
        font-size: 10px;
    }
    
    .service-item {
        max-width: 200px;
    }
    
    .service-title {
        font-size: 14px;
    }
    
    .service-subtitle {
        font-size: 12px;
    }
    
    .service-description {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .services-radial-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .service-item {
        position: static;
        max-width: 100%;
        flex-direction: row !important;
        justify-content: center;
    }
    
    .central-phone {
        position: static;
        transform: none;
        margin: 30px auto;
        width: 120px;
        height: 120px;
    }
    
    .central-logo {
        font-size: 12px;
    }
    
    .central-tagline {
        font-size: 7px;
    }
    
    .central-title {
        font-size: 9px;
    }
    
    .connection-line {
        display: none;
    }
    
    .service-content {
        margin: 0 10px;
    }
}

/* About Section Icons */
.about-icons-row {
    margin-top: 40px;
}

.about-icon-item {
    margin-bottom: 30px;
}

.about-icon-circle {
    width: 80px;
    height: 80px;
    background-color: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 32px;
    margin: 0 auto 20px auto;
    box-shadow: 0 5px 20px var(--shadow-color-light);
    transition: all 0.3s ease;
}

.about-icon-circle:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color-dark);
}

.about-icon-title {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-color);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive About Icons */
@media (max-width: 768px) {
    .about-icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .about-icon-title {
        font-size: 14px;
    }
}

/* NEW SERVICES SECTION - OVERRIDE OLD CSS */
.services-section {
    background-color: white !important;
    position: relative;
    overflow: hidden;
}

.services-grid {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
}

.services-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px var(--shadow-color);
    animation: pulse 2s infinite;
}

.hub-content {
    text-align: center;
    color: white;
}

.hub-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.hub-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hub-content p {
    font-size: 12px;
    opacity: 1;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin-bottom: 8px;
    color: white !important;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.service-card {
    position: absolute;
    background: var(--light-bg-color);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 8px 25px var(--shadow-color);
    transition: all 0.3s ease;
    max-width: 520px;
    width: 520px;
    height: 130px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 15px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-color-dark);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
    overflow: hidden;
}

.service-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1.2;
}

.service-content h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-content p {
    font-size: 12px;
    line-height: 1.3;
    margin: 0;
    color: var(--text-color);
    opacity: 0.8;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.service-content h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.service-content h5 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.service-content p {
    font-size: 13px;
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* Position service cards around the hub - Table Style */
.service-1 {
    top: 5% !important;
    left: -15% !important;
    position: absolute !important;
}

.service-2 {
    top: 50% !important;
    left: -15% !important;
    position: absolute !important;
    transform: translateY(-50%) !important;
}

.service-3 {
    top: 95% !important;
    left: -15% !important;
    position: absolute !important;
    transform: translateY(-100%) !important;
}

.service-4 {
    top: 5% !important;
    right: -15% !important;
    position: absolute !important;
    flex-direction: row-reverse;
}

.service-5 {
    top: 50% !important;
    right: -15% !important;
    position: absolute !important;
    transform: translateY(-50%) !important;
    flex-direction: row-reverse;
}

.service-6 {
    top: 95% !important;
    right: -15% !important;
    position: absolute !important;
    transform: translateY(-100%) !important;
    flex-direction: row-reverse;
}

/* Responsive Design for Services */
@media (max-width: 1200px) {
    .services-hub {
        width: 160px;
        height: 160px;
    }
    
    .hub-icon {
        font-size: 35px;
    }
    
    .hub-content h3 {
        font-size: 16px;
    }
    
    .service-card {
        max-width: 250px;
        padding: 20px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        min-height: 500px;
    }
    
    .services-hub {
        width: 140px;
        height: 140px;
    }
    
    .hub-icon {
        font-size: 30px;
    }
    
    .hub-content h3 {
        font-size: 14px;
    }
    
    .service-card {
        max-width: 460px;
        width: 460px;
        height: 120px;
        padding: 18px;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        gap: 15px;
        overflow: hidden;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important;
        min-height: auto !important;
        padding: 40px 0 !important;
    }
    
    .services-hub {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-bottom: 30px !important;
    }
    
    .service-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Testimonial Background */
.testimonial-bg {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 50%, rgba(26, 26, 26, 0.8) 100%), url('../img/testimonial/testimonial.jpg') center/cover;
}

/* Quote Background */
.quote-bg {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(45, 45, 45, 0.8) 50%, rgba(26, 26, 26, 0.8) 100%), url('../img/quote/quote.jpg') center/cover;
}

/* Counter Section */
.counter-section {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.counter-bg {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(45, 45, 45, 0.9) 50%, rgba(26, 26, 26, 0.9) 100%), url('../img/misc/count.jpg') center/cover;
}

.counter-item {
    padding: 15px 10px;
    transition: transform 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.counter-icon {
    position: relative;
    margin: 10px 0;
}

.counter-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
}

.counter-icon::before,
.counter-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transform: translateY(-50%);
}

.counter-icon::before {
    left: -35px;
}

.counter-icon::after {
    right: -35px;
}

.counter-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.counter-description {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    font-style: italic;
}

/* Counter Responsive */
@media (max-width: 768px) {
    .counter-section {
        padding: 30px 0;
    }
    
    .counter-item {
        padding: 10px 5px;
    }
    
    .counter-number {
        font-size: 2rem;
    }
    
    .counter-icon i {
        font-size: 1.2rem;
        padding: 8px;
    }
    
    .counter-icon::before,
    .counter-icon::after {
        width: 15px;
    }
    
    .counter-icon::before {
        left: -20px;
    }
    
    .counter-icon::after {
        right: -20px;
    }
    
    .counter-title {
        font-size: 0.8rem;
    }
    
    .counter-description {
        font-size: 0.65rem;
    }
}
