/* Revibex Corporate Website - Main Stylesheet */

/* CSS Custom Properties - Revibex Color Scheme */
:root {
    --primary-color: #163d6d;
    --secondary-color-1: #2a76ad;
    --secondary-color-2: #0e4b88;
    --accent-color: #bf0072;
    --text-dark: #333333;
    --text-light: #666666;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --black: #000000;
    --border-light: #e9ecef;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.15);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Base Typography */
body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    position: relative;
    z-index: 1;
    opacity: 1;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.20;
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color-1) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color-1) !important; }
.bg-light-custom { background-color: var(--background-light) !important; }

/* Button Styles */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 5px;
    transition: var(--transition-fast);
}

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

.btn-secondary-custom {
    background-color: var(--secondary-color-1);
    border-color: var(--secondary-color-1);
    color: var(--white);
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 5px;
    transition: var(--transition-fast);
}

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

/* Navigation Styles */
.navbar {
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.navbar-scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: var(--transition-fast);
}

.navbar.navbar-scrolled .navbar-brand img {
    height: 35px !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: 5px;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background-color: var(--background-light);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Breadcrumb Styles */
.breadcrumb-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color-1) 100%);
    color: white;
    padding: 2rem 0;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(42, 118, 173, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 75, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(191, 0, 114, 0.2) 0%, transparent 50%);
    z-index: 1;
}

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

.breadcrumb-section h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-item a:hover {
    color: white;
}

/* Footer Styles */
footer {
    position: relative;
    overflow: hidden;
}

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

footer h5 {
    color: white !important;
}

/* Social Media Links */
.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    margin-right: 10px;
}

.social-links a:hover {
    background-color: var(--secondary-color-1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

.hover-lift {
    transition: var(--transition-fast);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: var(--transition-fast);
    border: 1px solid var(--border-light);
}

.service-card:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
    transform: translateY(-5px);
}

.service-icon i {
    transition: var(--transition-fast);
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--secondary-color-1) !important;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow-light);
    transition: var(--transition-fast);
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-medium);
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: var(--transition-fast);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
    transform: translateY(-5px);
}

.blog-image {
    overflow: hidden;
    height: 200px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

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

.blog-content h5 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-content h5 a:hover {
    color: var(--secondary-color-1);
}

/* Contact Page Styles */
.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.contact-info-card:hover {
    background: white;
    box-shadow: 0 5px 15px var(--shadow-light);
    transform: translateY(-3px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-1));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.contact-details h5 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Form Styles */
.form-control {
    border: 1px solid var(--border-light);
    border-radius: 5px;
    padding: 12px 15px;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(22, 61, 109, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}



/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-1));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    background: linear-gradient(135deg, var(--secondary-color-1), var(--primary-color));
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        margin-top: 10px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

/* Language Dropdown Styles */
.language-dropdown .dropdown-toggle {
    background: none;
    border: 1px solid var(--border-light);
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-dropdown .dropdown-toggle:hover,
.language-dropdown .dropdown-toggle:focus {
    background-color: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.language-dropdown .dropdown-menu {
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    padding: 8px 0;
    min-width: 150px;
}

.language-dropdown .dropdown-item {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.language-dropdown .dropdown-item:hover {
    background-color: var(--background-light);
    color: var(--primary-color);
}

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

.flag-icon {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
}

/* Hero Section Styles - Modern */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding-top: 76px;  /* Ek: Fixed navbar yüksekliği için (header'daki shadow-sm) */
    margin-top: -76px;  /* Ek: Overlap önle */
}

.hero-slide {
    position: relative;
    height: 100vh;  /* Ek: Tam height zorla */
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(22, 61, 109, 0.8), rgba(42, 118, 173, 0.6));
    z-index: 2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 1.5px, transparent 2.5px),
        radial-gradient(circle at 60% 60%, rgba(255, 255, 255, 0.06) 1px, transparent 2px);
    background-size: 100px 100px, 150px 150px, 200px 200px;
    animation: modernPattern 20s linear infinite;
    z-index: 3;
}

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

.hero-slide .container {
    position: relative;
    z-index: 4;
}

.slide-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out;
}

.slide-subtitle {
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.3s both;
}

.slide-buttons {
    animation: slideInUp 1s ease-out 0.6s both;
    margin-top: 20px;
}

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

.hero-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.hero-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.hero-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.hero-carousel .owl-nav .owl-prev {
    left: 30px;
}

.hero-carousel .owl-nav .owl-next {
    right: 30px;
}

.hero-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-carousel .owl-dots .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition-fast);
}

.hero-carousel .owl-dots .owl-dot.active,
.hero-carousel .owl-dots .owl-dot:hover {
    background: white;
    border-color: white;
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    40% { 
        transform: translateX(-50%) translateY(-10px); 
    }
    60% { 
        transform: translateX(-50%) translateY(-5px); 
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    animation: bounce 2s infinite;
}

.scroll-down:hover {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Enhanced Icon Animations */
.service-icon i,
.feature-icon i {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .service-icon i {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-color-1) !important;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.15) rotate(-5deg);
    color: var(--primary-color) !important;
}

/* Footer Background */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color-2) 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/footer_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.10;
    z-index: 1;
}

/* Modern Breadcrumb Pattern */
.breadcrumb-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Code symbols */
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 85% 75%, rgba(255, 255, 255, 0.08) 1.5px, transparent 2.5px),
        radial-gradient(circle at 65% 15%, rgba(255, 255, 255, 0.12) 1px, transparent 2px),
        radial-gradient(circle at 25% 85%, rgba(255, 255, 255, 0.06) 0.5px, transparent 1.5px),
        radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        /* Connection lines */
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 255, 255, 0.03) 49%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 51%, transparent 52%),
        /* Binary pattern */
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(255, 255, 255, 0.02) 20px, rgba(255, 255, 255, 0.02) 22px),
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(255, 255, 255, 0.02) 20px, rgba(255, 255, 255, 0.02) 22px);
    background-size: 
        300px 300px, 250px 250px, 350px 350px, 200px 200px, 400px 400px,
        100px 100px, 120px 120px, 40px 40px, 40px 40px;
    background-position: 
        0 0, 150px 75px, 300px 150px, 75px 225px, 225px 37px,
        0 0, 60px 60px, 0 0, 0 0;
    z-index: 2;
    animation: techPattern 15s linear infinite;
}

@keyframes techPattern {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        transform: translateX(-10px) translateY(-5px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-5px) translateY(-10px);
        opacity: 0.7;
    }
    75% {
        transform: translateX(5px) translateY(-5px);
        opacity: 0.4;
    }
    100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
}

/* Blog Category Filter Styles */
.blog-filter {
    margin-bottom: 2rem;
}

.blog-filter .btn {
    margin: 0 5px 10px 0;
    padding: 8px 20px;
    border-radius: 25px;
    border: 2px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.blog-filter .btn:hover,
.blog-filter .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Portfolio Filter Styles */
.portfolio-filter {
    margin-bottom: 2rem;
    text-align: center;
}

.portfolio-filter .btn {
    margin: 0 5px 10px 0;
    padding: 10px 25px;
    border-radius: 25px;
    border: 2px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    transition: var(--transition-fast);
    font-weight: 500;
}

.portfolio-filter .btn:hover,
.portfolio-filter .btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Blog Detail Page Styles */
.recent-posts-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.recent-posts-widget h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

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

.recent-post-item:hover {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 1rem;
    margin: 0 -1rem;
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-fast);
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-content h6 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.recent-post-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.recent-post-content h6 a:hover {
    color: var(--primary-color);
}

.recent-post-meta {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Categories Widget */
.categories-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.categories-widget h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--background-light);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.category-list li a:hover {
    background: var(--primary-color);
    color: white;
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Portfolio Cards */
.portfolio-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: var(--transition-fast);
    border: 1px solid var(--border-light);
    position: relative;
}

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

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

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.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(22, 61, 109, 0.9), rgba(42, 118, 173, 0.9));
    opacity: 0;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.portfolio-overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: var(--transition-fast);
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--background-light);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Pagination Styles */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.5rem;
}

.pagination li {
    margin: 0;
}

.pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 2px solid var(--border-light);
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Service Detail Sidebar */
.services-widget {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.services-widget h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

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

.service-list li {
    margin-bottom: 0.5rem;
}

.service-list li a {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.service-list li a:hover {
    background: var(--primary-color);
    color: white;
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.service-list li a i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* About Page Mission/Vision Cards */
.mission-vision-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color-1));
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.mission-vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition-fast);
}

.mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-vision-icon i {
    font-size: 2rem;
    color: white;
}

.mission-vision-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Map Section Styles */
.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    margin: 0;
    background: var(--background-light);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
    transition: var(--transition-fast);
}

.map-wrapper:hover iframe {
    filter: brightness(1.05) contrast(1.1);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(22, 61, 109, 0.95);
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
    max-width: 300px;
    z-index: 10;
}

.map-overlay:hover {
    background: rgba(22, 61, 109, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.map-info h4 {
    color: white !important;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.map-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.map-info p i {
    color: var(--secondary-color-1);
    margin-right: 8px;
    font-size: 1rem;
}

.map-info .btn {
    background: linear-gradient(135deg, var(--secondary-color-1), var(--primary-color));
    border: none;
    color: white;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(42, 118, 173, 0.3);
}

.map-info .btn:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-2));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 118, 173, 0.4);
    color: white;
}

.map-info .btn i {
    color: white !important;
    margin-right: 0;
    font-size: 0.9rem;
}

/* Responsive Map Styles */
@media (max-width: 768px) {
    .map-wrapper {
        border-radius: 8px;
        margin: 0 -15px;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .map-overlay {
        bottom: 15px;
        left: 15px;
        right: 15px;
        max-width: none;
        padding: 1.25rem;
    }
    
    .map-info h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .map-info p {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .map-info .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .map-wrapper iframe {
        height: 250px;
    }
    
    .map-overlay {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 1rem;
    }
    
    .map-info h4 {
        font-size: 1rem;
    }
    
    .map-info p {
        font-size: 0.85rem;
    }
}

/* Map Section Container */
.map-section {
    padding: 0;
    background: var(--background-light);
}

.map-section .container-fluid {
    padding: 0;
}

/* Enhanced Map Wrapper with Theme Integration */
.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(22, 61, 109, 0.05) 0%, 
        rgba(42, 118, 173, 0.03) 50%, 
        rgba(22, 61, 109, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition-fast);
}

.map-wrapper:hover::before {
    opacity: 1;
}

/* Expertise Areas */
.expertise-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-fast);
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-fast);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.15) rotate(-10deg);
}

.expertise-icon i {
    font-size: 1.5rem;
    color: white;
}

.expertise-card h6 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Blog Search and Filter */
.blog-search-filter {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 1rem;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 14px;
    transition: var(--transition-fast);
}

.search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(22, 61, 109, 0.25);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-box button:hover {
    background: var(--secondary-color-1);
    transform: translateY(-50%) scale(1.1);
}

/* Contact Page Captcha */
.captcha-container {
    margin: 1rem 0;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.captcha-display {
    position: relative;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

#captchaCanvas {
    display: block;
    position: relative;
    z-index: 2;
    background: transparent;
}

.captcha-refresh {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 2px solid var(--border-light);
    background: white;
    color: var(--primary-color);
    cursor: pointer;
}

.captcha-refresh:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: rotate(180deg);
}

#captcha {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.captcha-success {
    border-color: #28a745 !important;
    background-color: rgba(40, 167, 69, 0.1);
}

.captcha-error {
    border-color: #dc3545 !important;
    background-color: rgba(220, 53, 69, 0.1);
}

/* Shake Animation for Captcha */
.shake {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* FAQ Section */
.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px var(--shadow-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--background-light);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--primary-color);
    color: white;
}
.faq-question h6:hover{
    color: white;
}

.faq-question h6 {
    margin: 0;
    font-weight: 500;
}

.faq-icon {
    transition: var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Footer Background Opacity Fix */
footer::before {
    opacity: 0.05 !important;
}

/* Enhanced Breadcrumb Pattern */
.breadcrumb-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        /* Network nodes */
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 2px, transparent 3px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 1.5px, transparent 2.5px),
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.18) 2px, transparent 3px),
        radial-gradient(circle at 30% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 2px),
        radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.14) 1.5px, transparent 2.5px),
        /* Connection lines */
        linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.08) 49.5%, rgba(255, 255, 255, 0.12) 50%, rgba(255, 255, 255, 0.08) 50.5%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 255, 255, 0.06) 49.5%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.06) 50.5%, transparent 51%),
        /* Data flow lines */
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(255, 255, 255, 0.04) 15px, rgba(255, 255, 255, 0.04) 17px),
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(255, 255, 255, 0.04) 15px, rgba(255, 255, 255, 0.04) 17px);
    background-size: 
        250px 250px, 200px 200px, 300px 300px, 180px 180px, 220px 220px,
        80px 80px, 100px 100px, 30px 30px, 30px 30px;
    background-position: 
        0 0, 125px 62px, 250px 125px, 62px 187px, 187px 31px,
        0 0, 50px 50px, 0 0, 0 0;
    z-index: 2;
    animation: networkPattern 20s ease-in-out infinite;
}

@keyframes networkPattern {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.4;
    }
    25% {
        transform: translateX(-8px) translateY(-4px);
        opacity: 0.6;
    }
    50% {
        transform: translateX(-4px) translateY(-8px);
        opacity: 0.8;
    }
    75% {
        transform: translateX(4px) translateY(-4px);
        opacity: 0.5;
    }
}

/* Lazy Loading */
img[data-src] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img.loaded {
    opacity: 1;
}
/* ====
=============================
   BLOG DETAIL PAGE STYLES - FIXED
   ================================= */

/* Recent Posts Widget - Blog Detail */
.recent-posts-widget {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.recent-posts-widget:hover {
    box-shadow: 0 12px 35px var(--shadow-medium);
    transform: translateY(-2px);
}

.recent-posts-widget h5 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.recent-posts-widget h5::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
}

.recent-post-item {
    display: flex;
    align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-fast);
    border-radius: 8px;
}

.recent-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-item:hover {
    background-color: var(--background-light);
    padding: 1.25rem;
    margin: 0 -1rem;
    transform: translateX(5px);
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    position: relative;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.15);
}

.recent-post-content h6 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 500;
}

.recent-post-content h6 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
}

.recent-post-content h6 a:hover {
    color: var(--primary-color);
}

.recent-post-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-post-meta i {
    color: var(--accent-color);
}

/* Categories Widget - Blog Detail */
.categories-widget {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.categories-widget:hover {
    box-shadow: 0 12px 35px var(--shadow-medium);
    transform: translateY(-2px);
}

.categories-widget h5 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.categories-widget h5::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
}

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

.category-list li {
    margin-bottom: 0.75rem;
}

.category-list li:last-child {
    margin-bottom: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: var(--background-light);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    border-left: 4px solid transparent;
    font-weight: 500;
}

.category-list li a:hover {
    background: var(--primary-color);
    color: white;
    border-left-color: var(--accent-color);
    transform: translateX(8px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.category-count {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.3rem 0.7rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

/* =================================
   SERVICE DETAIL PAGE STYLES - FIXED
   ================================= */

/* Services Widget - Service Detail */
.services-widget {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.services-widget:hover {
    box-shadow: 0 12px 35px var(--shadow-medium);
    transform: translateY(-2px);
}

.services-widget h5 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.services-widget h5::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--accent-color);
}

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

.service-list li {
    margin-bottom: 0.75rem;
}

.service-list li:last-child {
    margin-bottom: 0;
}

.service-list li a {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    background: var(--background-light);
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-fast);
    border-left: 4px solid transparent;
    font-weight: 500;
}

.service-list li a:hover {
    background: var(--primary-color);
    color: white;
    border-left-color: var(--accent-color);
    transform: translateX(8px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

.service-list li a i {
    margin-right: 1rem;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
    transition: var(--transition-fast);
}

.service-list li a:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* =================================
   ABOUT PAGE STYLES - FIXED
   ================================= */

/* Mission/Vision Cards - About Page */
.mission-vision-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.mission-vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color-1));
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.mission-vision-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.mission-vision-card:hover .mission-vision-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 10px 25px rgba(22, 61, 109, 0.3);
}

.mission-vision-icon i {
    font-size: 2.2rem;
    color: white;
    transition: var(--transition-fast);
}

.mission-vision-card:hover .mission-vision-icon i {
    transform: scale(1.1);
}

.mission-vision-card h4 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.mission-vision-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Expertise Areas - About Page */
.expertise-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 25px var(--shadow-light);
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition-fast);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.2) rotate(-15deg);
    box-shadow: 0 8px 20px rgba(191, 0, 114, 0.3);
}

.expertise-icon i {
    font-size: 1.6rem;
    color: white;
    transition: var(--transition-fast);
}

.expertise-card:hover .expertise-icon i {
    transform: scale(1.1) rotate(15deg);
}

.expertise-card h6 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Hide Team Section */
.team-section,
#team-section,
.ekibimiz-section {
    display: none !important;
}

/* =================================
   CONTACT PAGE FAQ STYLES - FIXED
   ================================= */

/* FAQ Section - Contact Page */
.faq-section {
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.faq-question {
    padding: 1.5rem 2rem;
    background: var(--background-light);
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
}

.faq-question:hover {
    background: var(--primary-color);
    color: white;
}

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

.faq-question h6 {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
}

.faq-icon {
    font-size: 1.2rem;
    transition: var(--transition-fast);
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 2rem;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* FAQ Section Title */
.faq-section h3 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.faq-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}/* 
=================================
   COOKIE CONSENT BANNER - NEW
   ================================= */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color-2) 100%);
    color: white;
    padding: 1.5rem 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    backdrop-filter: blur(10px);
}

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

.cookie-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.cookie-banner .container {
    position: relative;
    z-index: 2;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.cookie-text h6 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text h6 i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.cookie-text a:hover {
    color: white;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-btn-accept {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

.cookie-btn-accept:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 0, 114, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.cookie-modal-header h4 {
    color: var(--primary-color);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cookie-modal-close:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.cookie-category:hover {
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px var(--shadow-light);
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-category-title {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-size: 1rem;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: var(--border-light);
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-toggle.active {
    background: var(--primary-color);
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: var(--transition-fast);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active::after {
    transform: translateX(25px);
}

.cookie-category-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.cookie-modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: auto;
    }
    
    .cookie-modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .cookie-modal-actions {
        flex-direction: column;
    }
    
    .cookie-modal-actions .cookie-btn {
        width: 100%;
    }
}

/* Animation for cookie icon */
@keyframes cookieBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.cookie-text h6 i {
    animation: cookieBounce 2s ease-in-out infinite;
}
/* =================================
   COOKIE POLICY PAGE STYLES
   ================================= */

.policy-content {
    font-size: 1rem;
    line-height: 1.7;
}

.policy-intro {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.policy-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
}

.policy-section h3 {
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

.cookie-type-card {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-fast);
}

.cookie-type-card:hover {
    box-shadow: 0 5px 15px var(--shadow-light);
    transform: translateX(5px);
}

.cookie-type-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cookie-type-card ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cookie-type-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.contact-info p {
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--background-light);
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px var(--shadow-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-item:hover {
    box-shadow: 0 5px 20px var(--shadow-medium);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.faq-question:hover {
    background: var(--primary-color);
    color: white;
}

.faq-question h6 {
    margin: 0;
    font-weight: 600;
    color: inherit;
    transition: var(--transition-fast);
}

.faq-icon {
    font-size: 1rem;
    transition: var(--transition-fast);
    color: var(--primary-color);
}

.faq-question:hover .faq-icon {
    color: white;
    transform: rotate(180deg);
}

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

.faq-item.active .faq-question .faq-icon {
    color: white;
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: var(--background-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Table Styles */
.table-striped > tbody > tr:nth-of-type(odd) > td {
    background-color: var(--background-light);
}

.table th {
    border-top: none;
    font-weight: 600;
    color: var(--primary-color);
}

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

.table-primary th {
    color: white;
    border-color: var(--secondary-color-1);
}