/* ===================================
   CUSTOM CSS VARIABLES & ROOT STYLES
   =================================== */
/* Cache-busting: 2024-01-15-1645 */
/* NOTE: Dynamic CSS variables are loaded from database settings in header.php */
/* This section contains fallback values only */
:root {
    /* Fallback Brand Colors - Will be overridden by dynamic CSS */
    --primary-color: #f59e0b;
    --primary-dark: #f97316;
    --primary-light: #8b5cf6;
    --accent-color: #f59e0b;
    --accent-dark: #f97316;
    --secondary-color: #8b5cf6;
    --tertiary-color: #43e97b;
    
    /* Dynamic Card Border Colors - Will be overridden */
    --card-border: rgba(245, 158, 11, 0.2);
    --card-border-hover: rgba(249, 115, 22, 0.4);
    
    /* Dynamic Glassmorphism - Will be overridden */
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(245, 158, 11, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(245, 158, 11, 0.2);
    
    /* Static Neutral Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Static Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --bg-light-gray: #f3f4f6;
    
    /* Static Border & Shadow */
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Static Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Static Spacing */
    --section-padding: 60px 0;
    --container-padding: 15px;
    
    /* Static Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ===================================
   BLOG PAGE GRADIENT BORDERS
   =================================== */
/* Blog Featured Article Card */
.featured-article .card {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 0 3px var(--primary-color) !important;
}

/* Blog Sidebar Widget Cards with proper spacing */
.sidebar-widget {
    margin-bottom: 2rem; /* Add spacing between widgets */
}

.sidebar-widget .card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
}

/* Blog Regular Article Cards */
.blog-card .card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
}

/* ===================================
   PROJECTS PAGE GRADIENT BORDERS
   =================================== */
/* Project Cards */
.project-card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    margin-bottom: 1.5rem; /* Add spacing between project cards */
}

/* ===================================
   PRODUCTS PAGE GRADIENT BORDERS
   =================================== */
/* Products Page Product Cards - Override existing styles */
.products-section .product-card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    margin-bottom: 1.5rem; /* Add spacing between product cards */
}

/* Products Filter Section Cards */
.products-filters .input-group,
.products-filters .form-select {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 2px var(--primary-color) !important;
}

/* ===================================
   ABOUT PAGE GRADIENT BORDERS
   =================================== */
/* About Page Company Story Image - Removed duplicate styling */

/* About Page Vision & Mission Cards */
.vision-card,
.mission-card {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 0 3px var(--primary-color) !important;
    margin-bottom: 1.5rem; /* Add spacing between cards */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    overflow: hidden;
}

/* About Page Content Section */
.about-content {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border-radius: 1rem;
    height: 100%; /* Make content section take full height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    overflow: hidden;
    min-height: 500px; /* Minimum height to match image */
}

/* About Page Text Elements - Prevent Text Overflow */
.vision-card p,
.mission-card p,
.about-content p,
.vision-card h3,
.mission-card h3,
.about-content h2 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    line-height: 1.6;
}

/* Mobile optimization for About page text overflow */
@media (max-width: 768px) {
    .vision-card,
    .mission-card {
        padding: 1.5rem !important;
        margin-bottom: 1rem;
        overflow: hidden;
    }
    
    .vision-card p,
    .mission-card p,
    .about-content p {
        font-size: 0.95rem;
        line-height: 1.7;
        word-break: break-word;
        overflow-wrap: anywhere;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        word-break: break-word;
    }
    
    .about-content {
        padding: 1.25rem !important;
        overflow: hidden;
        min-height: auto !important;
    }
    
    .about-image {
        padding: 1.25rem !important;
        margin-bottom: 1rem;
        min-height: auto !important;
    }
    
    .about-content h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .vision-card,
    .mission-card {
        padding: 1rem !important;
        border-radius: 1rem !important;
    }
    
    .vision-card p,
    .mission-card p,
    .about-content p {
        font-size: 0.9rem;
        line-height: 1.8;
    }
    
    .vision-card h3,
    .mission-card h3 {
        font-size: 1.1rem;
    }
    
    .about-content h2 {
        font-size: 1.5rem;
    }
    
    .about-image {
        padding: 1rem !important;
        min-height: auto !important;
    }
    
    .about-content {
        min-height: auto !important;
    }
    
    .about-image img {
        height: 250px !important;
    }
}

/* About Page Image Container - Equal Height */
.about-image {
    height: 100%; /* Make image container take full height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border-radius: 1rem;
    background: white;
    min-height: 500px; /* Minimum height to match content */
}

/* About Page Image - Responsive and Equal Size */
.about-image img {
    width: 100%;
    height: 400px; /* Fixed height to match content area */
    object-fit: cover; /* Maintain aspect ratio while filling container */
    object-position: center;
    border-radius: 0.5rem;
}

/* Desktop optimization for equal height cards */
@media (min-width: 992px) {
    .about-content,
    .about-image {
        min-height: 520px;
        display: flex;
        align-items: center;
    }
    
    .about-content {
        justify-content: center;
    }
    
    .about-image {
        justify-content: center;
    }
}

/* ===================================
   SERVICES PAGE GRADIENT BORDERS
   =================================== */
/* Service Cards - Overview Page */
.service-card {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05), 0 0 0 3px var(--primary-color) !important;
}

/* Service Detail Page - Main Article */
.service-detail {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border-radius: 1rem;
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
}

/* Service Detail Page - Featured Image */
.service-featured-image img {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
}

/* Service Detail Page - Sidebar Widgets */
.service-sidebar .sidebar-widget {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    margin-bottom: 2rem; /* Add spacing between widgets */
}

/* Service Detail Page - Sidebar Cards */
.service-sidebar .card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
}

/* Service Features List Container */
.service-features {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--card-border);
}

/* Service Price Container */
.service-price {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Service Description Container */
.service-description {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--card-border);
}

/* Related Services Container */
.related-service {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 2px var(--primary-color) !important;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--card-border);
}

/* ===================================
   HOMEPAGE SECTIONS GRADIENT BORDERS
   =================================== */
/* Homepage Products Section - Product Cards */
.product-card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border: none !important;
}

/* Homepage Blog Section - Blog Cards */
.card.h-100 {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border: none !important;
}

/* Homepage Projects Section - Project Cards */
.project-card {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    border: none !important;
}

/* Override conflicting styles to ensure gradient borders are visible */
.product-card,
.card.h-100,
.project-card,
.service-card {
    border: none !important;
}

/* ===================================
   MOBILE PERFORMANCE OPTIMIZATION - FIXED
   =================================== */
/* Disable all animations for mobile performance - Enhanced */
.animate-on-scroll,
.animate-on-scroll.animated,
.stat-item.animate-on-scroll,
.stat-item {
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
    transform: none !important;
}

/* Disable backdrop-filter for performance, but preserve icon filters */
.floating-shapes,
.floating-shape,
.hero-section,
.service-card {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Ensure stat items are always visible */
.stat-item {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Disable hover effects completely for mobile performance */
*:hover {
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.floating-shapes {
    display: none !important;
}

.floating-shape {
    display: none !important;
}

/* Remove this global backdrop-filter rule as it was redundant and potentially problematic */

/* ===================================
   FONTAWESOME ICON FIX
   =================================== */
/* Ensure FontAwesome icons are properly displayed */
.fas, .far, .fab, .fal, .fad {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    display: inline-block !important;
}

/* Specific fix for stats section icons */
.stat-icon .fas {
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
}

/* Disable all hover transforms and complex animations */
.card:hover,
.service-card:hover,
.btn:hover {
    transform: none !important;
    animation: none !important;
}

/* Simplify scroll-to-top button */
.scroll-to-top {
    transition: none !important;
}

.scroll-to-top:hover {
    transform: none !important;
    animation: none !important;
}

.scroll-to-top.show {
    animation: none !important;
}

/* Remove all keyframe animations */
@keyframes slideInUp {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes fadeInUp {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes fadeInLeft {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes fadeInRight {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes slideInFromTop {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes scaleIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes productSlideIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes productFloatIn {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

@keyframes float {
    from { opacity: 1; transform: none; }
    to { opacity: 1; transform: none; }
}

/* ===================================
   MOBILE BOTTOM NAVIGATION
   =================================== */
/* Mobile Bottom Navigation - Only visible on mobile devices */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    padding: 6px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 4px;
    margin: 0 3px;
    transition: all 0.3s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.mobile-bottom-nav .nav-item span {
    font-size: 0.65rem;
    font-weight: 600;
}

.mobile-bottom-nav .nav-item.active {
    color: white;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-bottom-nav .nav-item.whatsapp {
    color: white;
    background: #25D366;
    border-color: rgba(255, 255, 255, 0.3);
}

.mobile-bottom-nav .nav-item.whatsapp i {
    font-size: 1.25rem;
}

.mobile-bottom-nav .nav-item:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.mobile-bottom-nav .nav-item.whatsapp:hover {
    background: #128C7E;
}

/* Show only on mobile devices (768px and below) */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Add bottom padding to body to prevent content being hidden behind navbar */
    body {
        padding-bottom: 70px;
    }
    
    /* Adjust footer bottom padding */
    .footer-main {
        padding-bottom: 20px;
    }
}

/* ===================================
   MOBILE REVIEWS SLIDER
   =================================== */
/* Reviews Wrapper - Mobile Horizontal Slider */
.reviews-wrapper {
    position: relative;
    width: 100%;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    width: 100%;
}

/* Mobile: Horizontal slider */
@media (max-width: 768px) {
    .reviews-wrapper {
        overflow: hidden;
        width: 100%;
        padding: 0;
    }
    
    .reviews-slider {
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        grid-template-columns: none;
    }
    
    .review-slide {
        min-width: 100%;
        width: 100%;
        flex: 0 0 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .review-card {
        width: 100%;
        margin: 0;
    }
}

/* ===================================
   GLOBAL STYLES & TYPOGRAPHY
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

.main-content {
    padding-top: 76px; /* Account for fixed header */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.text-light-gray {
    color: var(--text-light) !important;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ===================================
   HEADER & NAVIGATION - MODERN DESIGN
   =================================== */
.header-main {
    position: relative;
    z-index: 1000;
}

/* Modern navbar */
.navbar {
    padding: 0.25rem 0;
    transition: none !important;
    background-color: var(--primary-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modern navbar container - Daha ince tasarım */
.navbar .container {
    background: transparent;
    padding: 8px 20px;
}

.navbar-brand {
    font-size: 1.4rem; /* 1.5rem'den 1.4rem'e düşürüldü */
    font-weight: 700;
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

/* Logo styling in modern header */
.navbar-brand .logo-img {
    filter: none;
    border-radius: 10px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: none !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: white !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.4);
    transform: none !important;
}

.dropdown-menu {
    border: none;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.5rem;
    border: 1px solid var(--card-border);
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: none !important;
    color: var(--text-primary);
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--card-border) !important;
    color: var(--primary-color) !important;
    transform: none !important;
}

/* Mobile toggle button styling - Daha ince tasarım */
.navbar-toggler {
    border: none !important;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.3rem; /* Mobil için daha da küçültüldü */
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Modern CTA button in header - Daha ince tasarım */
.navbar-nav .btn-primary {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
    border: 2px solid rgba(255, 255, 255, 0.5) !important;
    font-weight: 700;
    padding: 0.4rem 0.8rem; /* Daha da küçük padding */
    border-radius: 8px !important;
    transition: none !important;
    text-shadow: none;
    font-size: 0.85rem; /* Yazı boyutu daha da küçültüldü */
}

.navbar-nav .btn-primary:hover {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
    transform: none !important;
}

/* ===================================
   BUTTONS & FORM ELEMENTS
   =================================== */
.btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow) !important;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-primary:hover {
    background: var(--primary-color) !important;
    transform: none !important;
    box-shadow: none !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:focus,
.btn-primary:active {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    box-shadow: var(--glass-shadow) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    background: var(--primary-color);
    border-radius: inherit;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    -webkit-mask-composite: xor;
    pointer-events: none;
}

.btn-outline-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: inherit;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--primary-color) !important;
}

.btn-outline-primary:hover::after {
    opacity: 1;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
}

/* Form Elements */
.form-control {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

/* ===================================
   CARDS & COMPONENTS - MODERN DESIGN WITH BORDERS
   =================================== */
/* Cards - Simplified without performance-heavy effects */
.card {
    border: 2px solid var(--card-border);
    border-radius: 8px;
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: none !important;
    overflow: hidden;
    position: relative;
}

.card::before {
    display: none !important;
}

.card:hover {
    transform: none !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-color: var(--card-border);
}

.card:hover::before {
    opacity: 0 !important;
}

.card-img-top {
    transition: none !important;
}

.card:hover .card-img-top {
    transform: none !important;
}

/* Service Cards - Image-based Layout */
.service-card {
    background: white;
    border: 2px solid var(--card-border);
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: none !important;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Service Card Image Area */
.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--card-border);
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback icon for services without image */
.service-card-image .service-icon-fallback {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

/* Service Card Content Area */
.service-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.service-card-content p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-card .btn {
    margin-top: auto;
    align-self: center;
    min-width: 120px;
    font-size: 0.85rem;
    padding: 0.5rem 0.75rem;
}

/* Service card hover effects - removed for performance */
.service-card::before {
    display: none !important;
}

.service-card:hover {
    transform: none !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-color: var(--card-border);
}

.service-card:hover::before {
    opacity: 0 !important;
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--text-primary);
}

/* Service Card Visual - New Layout */
.service-card-visual {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8fafc;
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.service-card-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Service Visual Background */
.service-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #667eea);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon-bg {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Service Overlay */
.service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

/* Service Action Button */
.service-action-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    flex: 1;
    margin-right: 10px;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.3px;
}

.service-action-btn:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

/* Service Arrow Button */
.service-arrow-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.service-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 0.9;
}

/* ======================================
   PRODUCT CARD VISUAL STYLES
   ====================================== */
.product-card-visual {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8fafc;
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.product-card-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.product-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.product-action-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    flex: 1;
    margin-right: 10px;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.3px;
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.product-arrow-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.product-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 0.9;
}

/* ======================================
   PROJECT CARD VISUAL STYLES
   ====================================== */
.project-card-visual {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8fafc;
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.project-card-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.project-status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.project-action-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    flex: 1;
    margin-right: 10px;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.3px;
}

.project-action-btn:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.project-arrow-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.project-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 0.9;
}

/* ======================================
   BLOG CARD VISUAL STYLES
   ====================================== */
.blog-card-visual {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f8fafc;
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

.blog-card-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-visual-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.blog-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px 12px;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
}

.blog-action-btn {
    background: var(--primary-color);
    color: white !important;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    flex: 1;
    margin-right: 10px;
    text-align: center;
    text-transform: none;
    letter-spacing: 0.3px;
}

.blog-action-btn:hover {
    background: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.blog-arrow-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.blog-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white !important;
    transform: translateX(3px);
    border-color: rgba(255, 255, 255, 0.6);
    opacity: 0.9;
}

/* Legacy service-icon support for backward compatibility */
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: none !important;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

/* Project Cards - Modern Design with Visible Titles and Buttons */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    border: 2px solid var(--card-border);
    height: 100%;
}

.project-card .project-image-wrapper {
    position: relative;
    overflow: hidden;
}

.project-card .img-fluid {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .img-fluid {
    transform: none !important;
}

.project-card .project-content {
    padding: 1.5rem;
    background: white;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.project-card .project-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    text-align: center;
}

.project-card .project-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    text-align: center;
}

.project-card .project-btn {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    align-self: center;
    margin: 0 auto;
}

.project-card:hover {
    transform: none !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border-color: var(--card-border);
}

.project-card:hover .project-btn {
    background: var(--primary-color);
    transform: none !important;
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Project Overlay - Removed as we now display content below image */

/* Mobile optimization for project cards */
@media (max-width: 768px) {
    .project-card .img-fluid {
        height: 200px;
    }
    
    .project-card .project-content {
        padding: 1.25rem;
    }
    
    .project-card .project-title {
        font-size: 1.1rem;
    }
    
    .project-card .project-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ===================================
   SECTIONS & LAYOUTS
   =================================== */
.section {
    padding: var(--section-padding);
}

.section-bg {
    background: #f8fafc;
    position: relative;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 158, 11, 0.02);
    pointer-events: none;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   HERO SECTION POSITIONING - UPDATED v2.2
   Button positioning at bottom of image with increased height
   =================================== */
.hero-section {
    background: none;
    color: white;
    min-height: 60vh !important; /* Reduced from 80vh for better proportions */
    display: flex !important;
    align-items: flex-end !important;
    position: relative;
    padding: 0; /* Remove padding to use full height */
    overflow: hidden;
    /* Remove any inherited effects - COMPREHENSIVE BLUR REMOVAL */
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    -ms-backdrop-filter: none !important;
}

/* Ensure background image takes precedence when set inline */
.hero-section[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    z-index: 1;
}

/* When hero section has background image, make hero-background transparent or overlay */
.hero-section[style*="background-image"] .hero-background {
    background: rgba(0, 0, 0, 0.4) !important;
}

/* Ensure hero content is above background */
.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex !important;
    align-items: flex-end !important;
    padding-bottom: 60px; /* Consistent spacing */
}

/* Remove all effects from hero section and children - ENHANCED */
.hero-section *,
.hero-section *::before,
.hero-section *::after {
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    -ms-backdrop-filter: none !important;
    transform: none !important;
    animation: none !important;
    -webkit-filter: none !important;
}



/* Override Bootstrap's align-items-center for hero section */
.hero-section .row.align-items-center {
    align-items: flex-end !important;
}

.hero-section .row {
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: flex-end !important;
}

/* Hero Slides - No carousel effects */
#heroSlides {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 60vh !important; /* Match hero section height */
    display: flex !important;
    align-items: flex-end !important;
    padding-bottom: 60px; /* Space from bottom */
}

.hero-slide.hidden {
    display: none;
}

/* Hero Buttons - Enhanced visibility without blur effects */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: auto !important;
    padding: 20px;
    position: relative;
    z-index: 3;
}

/* Specific targeting for button positioning */
.hero-section .col-lg-8 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    align-items: center !important;
    height: 100% !important;
}

.hero-buttons .btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.98); /* Slightly more opaque for better visibility */
    color: #333;
    transition: all 0.2s ease;
    /* Remove any potential blur effects */
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    -webkit-filter: none !important;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15); /* Add subtle shadow for better visibility */
}

.hero-buttons .btn:hover {
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    border-color: rgba(255, 255, 255, 0.95);
    transform: none !important;
    box-shadow: none !important;
}

/* Hero Background Image - NO BLUR EFFECT */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat;
    background-attachment: scroll;
    opacity: 1; /* NO BLUR - Full opacity as requested */
    z-index: -1;
    /* COMPREHENSIVE BLUR REMOVAL - All browser prefixes */
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    -ms-backdrop-filter: none !important;
    -webkit-filter: none !important;
    transform: none !important;
    animation: none !important;
    width: 100%;
    height: 100%;
    background-attachment: scroll;
}

/* NO OVERLAY - Clean image display without blur */
.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* NO OVERLAY - as requested */
    z-index: 1;
    /* COMPREHENSIVE BLUR REMOVAL */
    filter: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    -moz-backdrop-filter: none !important;
    -ms-backdrop-filter: none !important;
    -webkit-filter: none !important;
}

/* Ensure hero content is above background */
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-buttons {
    position: relative;
    z-index: 3;
}



/* Ultra-wide screen optimization */
@media (min-width: 2560px) {
    .hero-section {
        min-height: 45vh;
        max-height: 55vh;
    }
    
    .hero-slide {
        min-height: 45vh;
        max-height: 55vh;
    }
}

/* OPTIMIZED MOBILE RESPONSIVENESS - SIMPLIFIED AND BETTER PROPORTIONS */

/* Portrait orientation - IMPROVED VERTICAL SIZE FOR WIDE IMAGES */
@media (orientation: portrait) and (max-width: 768px) {
    .hero-section {
        min-height: 30vh; /* Reduced for better proportions on mobile */
        padding: 15px 0;
        max-height: 45vh;
        justify-content: flex-end;
        align-items: flex-end;
    }
    
    .hero-slide {
        min-height: 35vh;
        max-height: 45vh;
        justify-content: flex-end;
        align-items: flex-end;
        padding-bottom: 40px;
    }
    
    .hero-section .container {
        margin-bottom: 0;
        height: auto;
        display: flex;
        align-items: flex-end;
        padding-bottom: 40px;
    }
    
    /* Override Bootstrap classes for mobile portrait */
    .hero-section .row.align-items-center {
        align-items: flex-end !important;
    }
    
    .hero-image-bg {
        /* PORTRAIT OPTIMIZED FOR BETTER VERTICAL PRESENCE */
        background-size: 100% auto; /* Scale to full width */
        background-position: center top;
        background-repeat: no-repeat;
        opacity: 1;
        background-attachment: scroll;
        
        /* Fallback approach */
        background-size: cover;
        background-position: center 25%;
        
        width: 100%;
        height: 100%;
        min-height: 100%;
        
        /* COMPREHENSIVE BLUR REMOVAL */
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        -moz-backdrop-filter: none !important;
        -webkit-filter: none !important;
    }
}

/* Landscape orientation on mobile - OPTIMIZED FOR WIDE IMAGES */
@media (orientation: landscape) and (max-height: 500px) {
    .hero-section {
        min-height: 50vh; /* Reduced from 60vh for landscape */
        padding: 10px 0;
        max-height: 80vh;
    }
    
    .hero-slide {
        min-height: 60vh;
        max-height: 80vh;
    }
    
    .hero-image-bg {
        background-size: cover; /* Use cover for landscape as it works better */
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 1;
        background-attachment: scroll;
        
        /* COMPREHENSIVE BLUR REMOVAL */
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        -moz-backdrop-filter: none !important;
        -webkit-filter: none !important;
    }
    
    .hero-buttons {
        gap: 8px;
        padding: 10px;
    }
    
    .hero-buttons .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}





/* MAIN MOBILE RESPONSIVENESS - FIXED FOR WIDE IMAGES */
@media (max-width: 768px) {
    .hero-section {
        min-height: 50vh !important; /* Reduced height for mobile */
        padding: 15px 0;
        max-height: 65vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Position content at bottom */
        align-items: flex-end;
    }
    
    .hero-slide {
        min-height: 50vh !important;
        max-height: 65vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
        padding-bottom: 40px;
    }
    
    .hero-section .container {
        height: auto;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        margin-bottom: 0;
        padding-bottom: 40px;
    }
    
    .hero-section .row {
        align-items: flex-end !important;
        justify-content: center;
    }
    
    .hero-image-bg {
        /* OPTIMIZED FOR WIDE IMAGES (1920x600) */
        background-size: cover;
        background-position: center 25%; /* Show upper portion for wide images */
        background-repeat: no-repeat;
        opacity: 1; /* NO BLUR EFFECT */
        background-attachment: scroll;
        
        width: 100%;
        height: 100%;
        min-height: 100%;
        
        /* COMPREHENSIVE BLUR REMOVAL */
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        -moz-backdrop-filter: none !important;
        -webkit-filter: none !important;
    }
    
    /* Remove any overlay effects on mobile */
    .hero-image-bg::after {
        background: transparent !important;
    }
    
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 15px;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        flex: 0 0 auto;
        min-width: 140px;
        margin-bottom: 0;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* Small mobile screens - BETTER PROPORTIONS FOR WIDE IMAGES */
@media (max-width: 576px) {
    .hero-section {
        min-height: 35vh; /* Reduced for better proportion */
        padding: 10px 0;
        max-height: 45vh;
        justify-content: flex-end;
        align-items: flex-end;
    }
    
    .hero-slide {
        min-height: 35vh;
        max-height: 45vh;
        justify-content: flex-end;
        align-items: flex-end;
        padding-bottom: 30px;
    }
    
    .hero-section .container {
        margin-bottom: 0;
        padding-bottom: 30px;
    }
    
    /* Override Bootstrap classes for small mobile */
    .hero-section .row.align-items-center {
        align-items: flex-end !important;
    }
    
    .hero-image-bg {
        /* OPTIMIZED FOR WIDE IMAGES ON SMALL SCREENS */
        background-size: cover;
        background-position: center 30%; /* Show important upper portion */
        background-repeat: no-repeat;
        opacity: 1; /* NO BLUR EFFECT */
        background-attachment: scroll;
        
        width: 100%;
        height: 100%;
        min-height: 100%;
        
        /* COMPREHENSIVE BLUR REMOVAL */
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        -moz-backdrop-filter: none !important;
        -webkit-filter: none !important;
    }
    
    /* Remove any overlay effects */
    .hero-image-bg::after {
        background: transparent !important;
    }
    
    .hero-buttons {
        padding: 8px;
        gap: 8px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 220px;
    }
}

/* Extra small screens - SPECIFICATION COMPLIANT */
@media (max-width: 375px) {
    .hero-section {
        min-height: 30vh; /* Per specification requirement */
        padding: 10px 0;
        max-height: 40vh;
        justify-content: flex-end;
        align-items: flex-end;
    }
    
    .hero-slide {
        min-height: 30vh;
        max-height: 40vh;
        justify-content: flex-end;
        align-items: flex-end;
    }
    
    .hero-section .container {
        margin-bottom: 10px;
    }
    
    .hero-image-bg {
        background-size: cover;
        background-position: center center; /* Center center per specification */
        opacity: 0.7; /* 0.7 opacity per specification */
        background-attachment: scroll;
        
        /* COMPREHENSIVE BLUR REMOVAL */
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        -moz-backdrop-filter: none !important;
        -webkit-filter: none !important;
    }
    
    /* Reduce overlay opacity per specification */
    .hero-image-bg::after {
        background: rgba(0, 0, 0, 0.05) !important;
    }
    
    .hero-buttons .btn {
        padding: 8px 14px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 200px;
    }
}

/* Responsive breakpoints for different screen sizes */

/* Large desktop screens */
@media (min-width: 1920px) {
    .hero-section {
        min-height: 70vh;
        max-height: 80vh;
    }
    
    .hero-slide {
        min-height: 70vh;
        max-height: 80vh;
    }
    
    .hero-image-bg {
        background-size: cover;
        background-position: center center;
    }
}

/* Large screens (desktop) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .hero-section {
        min-height: 65vh;
        max-height: 75vh;
    }
    
    .hero-slide {
        min-height: 65vh;
        max-height: 75vh;
    }
}

/* Medium screens (laptop) */
@media (max-width: 1199px) {
    .hero-section {
        min-height: 55vh;
        padding: 50px 0;
    }
    
    .hero-slide {
        min-height: 55vh;
    }
    
    .hero-image-bg {
        background-size: cover;
        background-position: center center;
    }
}

/* Small laptops and tablets */
@media (max-width: 991px) {
    .hero-section {
        min-height: 50vh;
        padding: 45px 0;
    }
    
    .hero-slide {
        min-height: 50vh;
    }
    
    .hero-image-bg {
        background-size: cover;
        background-position: center center;
    }
}

/* Tablet landscape optimization */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        min-height: 50vh;
        padding: 40px 0;
    }
    
    .hero-slide {
        min-height: 50vh;
    }
    
    .hero-image-bg {
        background-size: cover;
        background-position: center center;
        object-fit: cover;
        object-position: center center;
    }
    
    .hero-buttons .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* Mobile-specific image improvements - Enhanced */
@media (max-width: 768px) {
    /* Better image handling for different screen densities */
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .hero-image-bg {
            background-size: cover;
            background-position: center center;
            /* High DPI optimization */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            /* COMPREHENSIVE BLUR REMOVAL */
            filter: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            -moz-backdrop-filter: none !important;
            -webkit-filter: none !important;
            opacity: 1; /* No blur effect */
        }
    }
}

/* iOS Safari specific fixes - BETTER VERTICAL PRESENCE */
@supports (-webkit-appearance: none) {
    @media (max-width: 768px) {
        .hero-section {
            min-height: 50vh; /* Increased for better image size */
            min-height: calc(var(--vh, 1vh) * 50);
            justify-content: center;
            align-items: center;
        }
        
        .hero-image-bg {
            /* iOS specific fixes for better vertical presence */
            -webkit-background-size: 100% auto; /* Width-first scaling */
            background-attachment: scroll;
            background-position: center top;
            opacity: 1;
            
            /* Fallback to cover */
            background-size: cover;
            background-position: center 25%;
            
            /* Enhanced image loading states */
            transition: opacity 0.3s ease-in-out;
            
            width: 100%;
            height: 100%;
            
            /* COMPREHENSIVE BLUR REMOVAL for iOS */
            filter: none !important;
            backdrop-filter: none !important;
            -webkit-backdrop-filter: none !important;
            -moz-backdrop-filter: none !important;
            -webkit-filter: none !important;
        }
        
        .hero-image-bg:not(.image-loaded) {
            background-color: #f3f4f6;
            opacity: 0.8;
        }
        
        .hero-image-bg.image-loaded {
            opacity: 1;
        }
    }
}

/* ===================================
   MODERN CUSTOMER REVIEWS SECTION - COMPACT DESIGN
   =================================== */

/* Reviews section container */
.reviews-section {
    background: #f8fafc;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    margin: 40px 0;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.03) 0%, rgba(var(--secondary-rgb), 0.03) 100%);
    z-index: 1;
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-section .section-title h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.reviews-section .section-title p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Modern review card styling - Compact Design */
.review-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(var(--primary-rgb), 0.2);
}

/* Review header - Compact Layout */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
}

.customer-info {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
    border: 2px solid rgba(var(--primary-rgb), 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.customer-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.customer-avatar-placeholder i {
    font-size: 1.2rem;
    color: white;
}

.customer-details {
    flex: 1;
    min-width: 0;
}

.customer-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-title {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-company {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Review rating - Compact */
.review-rating {
    display: flex;
    gap: 1px;
    margin-left: 8px;
    flex-shrink: 0;
}

.review-rating .fas {
    font-size: 0.85rem;
    color: #e5e7eb;
    transition: color 0.2s ease;
}

.review-rating .fas.active {
    color: #fbbf24;
}

/* Review content - Optimized */
.review-content {
    flex: 1;
    margin-bottom: 0;
}

.review-content blockquote {
    margin: 0;
    position: relative;
    padding: 0;
}

.quote-icon {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
    opacity: 0.7;
}

.review-content p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Remove footer styling since we removed dates */
.review-footer {
    display: none;
}



/* Responsive design for review cards - Compact */
@media (max-width: 991.98px) {
    .reviews-section {
        padding: 50px 0;
        margin: 30px 0;
    }
    
    .reviews-section .section-title h2 {
        font-size: 1.75rem;
    }
    
    .review-card {
        padding: 20px;
        border-radius: 14px;
    }
    
    .customer-avatar,
    .customer-avatar-placeholder {
        width: 44px;
        height: 44px;
        margin-right: 10px;
    }
    
    .customer-avatar-placeholder i {
        font-size: 1.1rem;
    }
    
    .customer-name {
        font-size: 0.95rem;
    }
    
    .customer-title {
        font-size: 0.75rem;
    }
    
    .customer-company {
        font-size: 0.7rem;
    }
}

@media (max-width: 767.98px) {
    .reviews-section {
        padding: 40px 0;
        margin: 20px 0;
    }
    
    .reviews-section .section-title h2 {
        font-size: 1.5rem;
    }
    
    .reviews-section .section-title p {
        font-size: 0.9rem;
    }
    
    .review-card {
        padding: 18px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
    }
    
    .review-rating {
        margin-left: 0;
    }
    
    .customer-avatar,
    .customer-avatar-placeholder {
        width: 40px;
        height: 40px;
        margin-right: 8px;
    }
    
    .customer-avatar-placeholder i {
        font-size: 1rem;
    }
    
    .quote-icon {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .review-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 575.98px) {
    .reviews-section {
        padding: 30px 0;
        margin: 15px 0;
    }
    
    .reviews-section .section-title h2 {
        font-size: 1.35rem;
    }
    
    .review-card {
        padding: 16px;
        border-radius: 10px;
    }
    
    .customer-avatar,
    .customer-avatar-placeholder {
        width: 36px;
        height: 36px;
        margin-right: 6px;
    }
    
    .customer-name {
        font-size: 0.9rem;
    }
    
    .customer-title {
        font-size: 0.7rem;
    }
    
    .customer-company {
        font-size: 0.65rem;
    }
    
    .review-content p {
        font-size: 0.8rem;
    }
    
    .review-rating .fas {
        font-size: 0.8rem;
    }
}

/* ===================================
   FOOTER - ENHANCED GLASSMORPHISM DESIGN
   =================================== */
.footer-main {
    background: var(--primary-color) !important;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.footer-main .container {
    position: relative;
    z-index: 2;
}

/* Enhanced glassmorphism footer sections */
.footer-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: inherit;
    pointer-events: none;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Enhanced text visibility with glassmorphism */
.footer-main p,
.footer-main span,
.footer-main a {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Footer section content with glassmorphism */
.footer-section p {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-title {
    color: white !important;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    opacity: 0.8;
}

/* Enhanced footer links with glassmorphism */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li {
    margin-bottom: 0;
    display: block;
}

.footer-links a {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.footer-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.6s ease;
}

.footer-links a:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.footer-links a:hover::before {
    left: 100%;
}

/* Enhanced social links with glassmorphism */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

/* Enhanced footer bottom with glassmorphism */
.footer-bottom {
    margin-top: 10px;
    padding: 8px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.footer-bottom p {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 0.8rem;
    opacity: 0.7;
    line-height: 1.2;
}

/* ===================================
   FOOTER UNIFIED FRAME LAYOUT
   =================================== */
.footer-unified-frame {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 8px;
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.footer-unified-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: inherit;
    pointer-events: none;
}

.footer-unified-frame:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

/* Frame section styling */
.footer-frame-section {
    padding: 20px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.footer-frame-section:last-child {
    border-right: none;
}

.footer-frame-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transform: scale(1.02);
}

/* Frame titles with enhanced glassmorphism */
.footer-frame-title {
    color: white !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.footer-frame-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    opacity: 0.8;
}

.footer-frame-title:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--card-border);
}

/* Frame links with compact button design */
.footer-frame-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-frame-link {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    min-height: 42px;
}

.footer-frame-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--card-border), transparent);
    transition: left 0.5s ease;
}

.footer-frame-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--card-border-hover);
    transform: translateX(6px);
    box-shadow: 
        0 8px 25px var(--card-border),
        0 0 20px var(--card-border);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.footer-frame-link:hover::before {
    left: 100%;
}

.footer-frame-link i {
    color: var(--primary-color);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    min-width: 16px;
}

.footer-frame-link:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Frame contacts styling */
.footer-frame-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-frame-contact {
    display: flex;
    align-items: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    min-height: 42px;
}

.footer-frame-contact:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
    border-color: var(--card-border);
}

.footer-frame-contact i {
    color: var(--primary-color);
    font-size: 0.85rem;
    min-width: 16px;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.footer-frame-contact:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.footer-frame-contact a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-frame-contact a:hover {
    color: var(--primary-color);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* Responsive design for unified frame */
@media (max-width: 991.98px) {
    .footer-unified-frame {
        padding: 25px 20px;
        border-radius: 8px;
    }
    
    .footer-frame-section {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .footer-frame-section:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
    
    .footer-frame-title {
        font-size: 1.05rem;
    }
    
    .footer-frame-link,
    .footer-frame-contact {
        padding: 8px 12px;
        font-size: 0.85rem;
        min-height: 38px;
    }
}

@media (max-width: 767.98px) {
    .footer-unified-frame {
        padding: 20px 15px;
        border-radius: 8px;
    }
    
    .footer-frame-section {
        padding: 15px 10px;
    }
    
    .footer-frame-title {
        font-size: 1rem;
        padding: 10px 14px;
    }
    
    .footer-frame-link,
    .footer-frame-contact {
        padding: 7px 10px;
        font-size: 0.8rem;
        min-height: 36px;
    }
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.footer-bottom-links a {
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-bottom-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
    transition: left 0.5s ease;
}

.footer-bottom-links a:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(245, 158, 11, 0.15),
        0 0 20px rgba(139, 92, 246, 0.1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.footer-bottom-links a:hover::before {
    left: 100%;
}

/* Footer bottom text with enhanced visibility */
.footer-bottom p {
    color: white !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Enhanced contact info with glassmorphism */
.contact-info .contact-item {
    margin-bottom: 15px;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info .contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-info .contact-item i {
    color: white !important;
    background: var(--card-border-hover);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-size: 1.1rem;
    box-shadow: 0 4px 15px var(--card-border);
}

.contact-info .contact-item a,
.contact-info .contact-item span {
    color: white !important;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: inline-block;
    margin-left: 10px;
    flex: 1;
}

.contact-info .contact-item a:hover {
    color: white !important;
    text-shadow: 0 3px 12px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--card-border-hover);
    transform: translateY(-2px);
}

/* Logo styling with glassmorphism */
.footer-logo {
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.footer-section:hover .footer-logo {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
    transform: scale(1.05);
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 8px 25px var(--card-border-hover);
    /* Remove blur effect that might interfere with hero section */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.scroll-to-top:hover {
    background: var(--gradient-secondary);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px var(--card-border-hover);
    border-color: rgba(255, 255, 255, 0.6);
}

.scroll-to-top.show {
    display: flex;
    animation: slideInUp 0.5s ease;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   MODERN FLOATING ELEMENTS & EFFECTS
   =================================== */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

/* Ensure floating shapes don't interfere with hero section on mobile */
.hero-section .floating-shapes {
    display: none; /* Never show floating shapes in hero section */
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 15%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
        opacity: 0.9;
    }
    66% {
        transform: translateY(10px) rotate(240deg);
        opacity: 0.8;
    }
}

/* Enhanced Section Styling */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(600px circle at 50% 0%, rgba(102, 126, 234, 0.02), transparent),
        radial-gradient(400px circle at 80% 100%, rgba(240, 147, 251, 0.02), transparent);
    pointer-events: none;
    z-index: 1;
}

.section .container {
    position: relative;
    z-index: 2;
}

/* Modern Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title h2 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   MODERN VISUAL SLIDER SECTION
   =================================== */

.modern-slider-section {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.modern-slider-container {
    position: relative;
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.modern-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slider-item.active {
    opacity: 1;
    z-index: 2;
}

.slider-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slider-item:hover .slider-image img {
    transform: scale(1.05);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.slider-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 3;
    text-align: center;
    color: white;
}

.slider-text {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.slider-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.slider-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary-color);
    color: white !important;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: none;
    letter-spacing: 0.5px;
}

.slider-btn:hover {
    background: white;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.slider-btn i {
    transition: transform 0.3s ease;
}

.slider-btn:hover i {
    transform: translateX(5px);
}

/* Product-specific slider elements */
.slider-price {
    margin-bottom: 25px;
}

.price-tag {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Slider Navigation */
.slider-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 4;
    pointer-events: none;
}

.slider-nav {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.indicator.active,
.indicator:hover {
    background: white;
    transform: scale(1.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ===================================
   SHOWCASE GALLERY SECTION (Like About Preview)
   =================================== */
.showcase-gallery-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.showcase-gallery-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.showcase-gallery-glass .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.showcase-gallery-glass .section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Gallery Slider Wrapper */
.gallery-slider-wrapper {
    position: relative;
    margin-top: 40px;
    overflow: visible;
}

.gallery-slider {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-slide {
    position: relative;
    display: block;
    opacity: 1;
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-slide:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    pointer-events: none;
}

/* Gallery Caption */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    color: white;
    z-index: 2;
}

.gallery-caption h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gallery-caption p {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.gallery-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Navigation Controls */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.gallery-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-prev {
    left: -25px;
}

.gallery-next {
    right: -25px;
}

/* Indicators */
.gallery-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-indicator.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    width: 35px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 992px) {
    .showcase-gallery-glass {
        padding: 40px;
    }
    
    .showcase-gallery-glass .section-title h2 {
        font-size: 2rem;
    }
    
    .gallery-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .gallery-image-container {
        height: 350px;
    }
    
    .gallery-caption h4 {
        font-size: 1.25rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }
    
    .gallery-nav {
        width: 45px;
        height: 45px;
    }
    
    .gallery-prev {
        left: -22px;
    }
    
    .gallery-next {
        right: -22px;
    }
}

@media (max-width: 768px) {
    .showcase-gallery-glass {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .showcase-gallery-glass .section-title h2 {
        font-size: 1.75rem;
    }
    
    .gallery-slider {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        transition: transform 0.5s ease;
    }
    
    .gallery-slide {
        min-width: 100%;
        flex-shrink: 0;
    }
    
    .gallery-image-container {
        height: 350px;
    }
    
    .gallery-caption {
        padding: 25px;
    }
    
    .gallery-caption h4 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .gallery-caption p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .gallery-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .showcase-gallery-section {
        padding: 60px 0;
    }
    
    .gallery-image-container {
        height: 280px;
    }
    
    .gallery-caption {
        padding: 20px;
    }
    
    .gallery-caption h4 {
        font-size: 1.25rem;
    }
    
    .gallery-caption p {
        font-size: 0.9rem;
    }
    
    .gallery-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* ===================================
   ABOUT PREVIEW SECTION - ENHANCED GLASSMORPHISM
   =================================== */

/* Enhanced section background */
.about-preview-section {
    background: 
        radial-gradient(circle at 20% 80%, var(--glass-border) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--card-border) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--glass-border) 0%, transparent 50%),
        linear-gradient(135deg, var(--glass-border) 0%, var(--card-border) 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    min-height: auto;
}

/* Background Effects - Enhanced Floating Orbs */
.about-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    filter: blur(50px);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: -5%;
    background: var(--tertiary-color);
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 65%;
    right: -3%;
    background: var(--secondary-color);
    animation-delay: 3s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 45%;
    background: var(--secondary-color);
    animation-delay: 6s;
}

/* Enhanced glassmorphism content container */
.about-content-glass {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px 35px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 2;
    /* Remove transitions for mobile optimization */
    transition: none !important;
    height: fit-content;
}

.about-content-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: inherit;
    pointer-events: none;
}

.about-content-glass:hover {
    /* Remove all hover effects for mobile optimization */
    transform: none !important;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

/* Enhanced title with better gradient */
.section-title-modern h2.gradient-text {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    position: relative;
}

.section-title-modern h2.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    opacity: 0.6;
}

.text-enhanced {
    color: var(--text-primary) !important;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* Enhanced glassmorphism feature items */
.feature-item-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-item-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--card-border);
    transition: left 0.5s ease;
}

.feature-item-glass:hover {
    transform: translateX(10px) translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--card-border-hover);
    box-shadow: 
        0 15px 40px var(--glass-shadow),
        0 0 30px var(--card-border);
}

.feature-item-glass:hover::before {
    left: 100%;
}

/* Enhanced feature icons with glassmorphism */
.feature-icon-modern {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 
        0 8px 25px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-icon-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.feature-icon-modern i {
    font-size: 1.4rem;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Feature content styling */
.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    /* Remove transitions for mobile optimization */
    transition: none !important;
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    /* Remove transitions for mobile optimization */
    transition: none !important;
}

/* Feature item hover effects - Removed for mobile optimization */
.feature-item-glass:hover .feature-icon-modern {
    transform: none !important;
    box-shadow: 
        0 8px 25px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.feature-item-glass:hover .feature-title {
    color: var(--text-primary);
}

.feature-item-glass:hover .feature-description {
    color: var(--text-secondary);
}

/* Enhanced CTA buttons with glassmorphism - Mobile Optimized */
.about-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.about-cta-buttons .btn {
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 600;
    min-width: 170px;
    font-size: 0.95rem;
    background: var(--primary-color) !important;
    color: white !important;
    border: 2px solid var(--primary-color) !important;
    box-shadow: var(--glass-shadow) !important;
    /* Remove all hover effects and transitions for mobile optimization */
    transition: none !important;
    transform: none !important;
}

/* Floating Animation Enhancement */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

/* Floating Stats Cards */
.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 20px 15px;
    text-align: center;
    min-width: 80px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(245, 158, 11, 0.1);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.stat-card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
}

.stat-card-2 {
    top: 60%;
    right: -8%;
    animation-delay: 2s;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(245, 158, 11, 0.2));
}

.stat-card-3 {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(139, 92, 246, 0.2));
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(245, 158, 11, 0.2);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(1deg);
    }
    50% {
        transform: translateY(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

/* Mobile Responsiveness - Enhanced Glassmorphism */
@media (max-width: 991.98px) {
    .about-preview-section {
        padding: 50px 0;
    }
    
    .about-content-glass {
        padding: 30px 25px;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }
    
    /* Modern Slider - Mobile */
    .modern-slider-container {
        height: 400px;
    }
    
    .slider-text {
        padding: 30px 20px;
        border-radius: 15px;
        max-width: 500px;
    }
    
    .slider-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .slider-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .slider-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .slider-navigation {
        padding: 0 20px;
    }
    
    .slider-nav {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .section-title-modern h2.gradient-text {
        font-size: 1.8rem;
    }
    
    .about-cta-buttons .btn {
        min-width: 150px;
        padding: 12px 20px;
    }
    
    .floating-shapes .floating-shape {
        display: none;
    }
    
    .gradient-orb {
        opacity: 0.1;
    }
}

@media (max-width: 767.98px) {
    .about-content-glass {
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 8px;
    }
    
    /* Modern Slider - Small Mobile */
    .modern-slider-container {
        height: 350px;
    }
    
    .slider-text {
        padding: 25px 15px;
        border-radius: 12px;
        max-width: 400px;
    }
    
    .slider-title {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }
    
    .slider-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .slider-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .slider-navigation {
        padding: 0 15px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .section-title-modern h2.gradient-text {
        font-size: 1.6rem;
    }
    
    .text-enhanced {
        font-size: 0.95rem;
    }
    
    .feature-item-glass {
        padding: 15px;
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    .feature-icon-modern {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon-modern i {
        font-size: 1.2rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    
    .about-cta-buttons .btn {
        margin-bottom: 8px;
        min-width: auto;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .gradient-orb {
        display: none;
    }
}

/* CTA Section - Modern Enhanced Design */
.bg-gradient {
    background: var(--primary-color) !important;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    min-height: 400px;
}

.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.bg-gradient .container {
    position: relative;
    z-index: 2;
}

/* CTA Content Styling - Single Centered Box */
.cta-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2), 0 0 50px rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: white !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 0;
}

/* Modern CTA Buttons - Single Centered Button */
.cta-buttons {
    text-align: center;
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-buttons .btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    min-width: 180px;
    /* Remove all hover effects and transitions for mobile optimization */
    transition: none !important;
    transform: none !important;
}

/* CTA Section Floating Elements */
.bg-gradient .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.bg-gradient .floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: ctaFloat 20s infinite linear;
    box-shadow: var(--glass-shadow);
}

.bg-gradient .floating-shape:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    background: var(--primary-color);
    animation-delay: 0s;
    animation-duration: 25s;
}

.bg-gradient .floating-shape:nth-child(2) {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 15%;
    background: var(--secondary-color);
    animation-delay: 8s;
    animation-duration: 30s;
    box-shadow: var(--glass-shadow);
}

.bg-gradient .floating-shape:nth-child(3) {
    width: 45px;
    height: 45px;
    bottom: 30%;
    left: 70%;
    background: var(--tertiary-color);
    animation-delay: 15s;
    animation-duration: 22s;
    box-shadow: var(--glass-shadow);
}

@keyframes ctaFloat {
    0% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translateY(-30px) translateX(20px) rotate(120deg);
        opacity: 0.7;
    }
    66% {
        transform: translateY(15px) translateX(-15px) rotate(240deg);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0px) translateX(0px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Blog Cards Enhancement with Borders and Centered Buttons */
.card.h-100 {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid var(--card-border);
    border-radius: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.card.h-100:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(245, 158, 11, 0.15);
    border-color: var(--card-border-hover);
}

.card.h-100 .card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    padding: 1.5rem;
}

.card.h-100 .card-body .d-flex {
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.card.h-100 .card-body .btn {
    margin: auto auto 0 auto;
    align-self: center;
    min-width: 150px;
}

.card.h-100 .card-body .card-title {
    text-align: center;
    margin-bottom: 1rem;
}

.card.h-100 .card-body .card-text {
    text-align: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.badge {
    background: var(--primary-color) !important;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    align-self: center;
    margin-bottom: 0.75rem;
}

/* Enhanced Utility Classes */
.text-gradient {
    background: var(--primary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.transition-all {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Card Button Consistency - Mobile-Friendly */
.card.h-100 .btn,
.project-card .btn {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.5px;
    min-width: 140px;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Service card buttons - separate styling */
.service-card .btn {
    border-radius: 8px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Ensure primary buttons are always colored */
.service-card .btn-primary,
.card.h-100 .btn-primary {
    background: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    color: white !important;
    box-shadow: var(--glass-shadow) !important;
}

.service-card .btn:hover {
    transform: none !important;
    box-shadow: none !important;
}

.card.h-100 .btn:hover,
.project-card .btn:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile-specific button styling */
@media (max-width: 768px) {
    .card.h-100 .btn {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .service-card .btn {
        width: 100%;
        max-width: 180px;
        margin: 0 auto;
    }
    
    .service-card .btn-primary,
    .card.h-100 .btn-primary {
        background: var(--primary-color) !important;
        border-color: var(--primary-color) !important;
        color: white !important;
    }
}

/* Ensure proper spacing in cards */
.card-body {
    display: flex;
    flex-direction: column;
}

.card-body .card-title {
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.card-body .card-text {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    flex-grow: 1;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .floating-shape {
        display: none !important; /* Hide floating shapes on mobile for performance and display issues */
    }
    
    .floating-shapes {
        display: none !important; /* Hide entire floating shapes container on mobile */
    }
    
    /* Ensure hero section is clean on mobile */
    .hero-section .floating-shapes,
    .hero-section .floating-shape {
        display: none !important;
    }
    
    .service-card-image {
        height: 140px;
    }
    
    .service-card-content {
        padding: 1rem;
    }
    
    .service-card-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card-content p {
        font-size: 0.85rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    /* CTA Section Mobile */
    .bg-gradient {
        padding: 50px 0;
    }
    
    .cta-content {
        padding: 20px;
        margin: 10px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        padding: 20px;
        margin: 10px 0;
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 10px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .bg-gradient .floating-shape {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

/* ===================================
   ANIMATIONS & KEYFRAMES
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-on-scroll {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-on-scroll.slide-left.animated {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-on-scroll.slide-right.animated {
    animation: fadeInRight 0.8s ease forwards;
}

.animate-on-scroll.slide-top.animated {
    animation: slideInFromTop 0.8s ease forwards;
}

.animate-on-scroll.scale-in.animated {
    animation: scaleIn 0.8s ease forwards;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    
    .section {
        padding: 40px 0;
    }
    
    .stats-section {
        padding: 20px 0;
    }
    
    .stat-item {
        padding: 8px 6px;
        margin: 1px;
        border-radius: 8px;
        height: 75px;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .service-card-image {
        height: 100px;
    }
    
    .service-card-content {
        padding: 0.75rem;
    }
    
    .service-card-content h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card-content p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
        min-width: 100px;
    }
    
    /* Service Card Visual - Mobile Responsive */
    .service-card-visual {
        height: 220px;
    }
    
    .service-overlay {
        padding: 15px;
    }
    
    .service-action-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        margin-right: 8px;
    }
    
    .service-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-icon-bg {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    /* Product Card Visual - Mobile */
    .product-card-visual {
        height: 250px;
    }
    
    .product-overlay {
        padding: 15px;
    }
    
    .product-action-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        margin-right: 8px;
    }
    
    .product-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Project Card Visual - Mobile */
    .project-card-visual {
        height: 250px;
    }
    
    .project-overlay {
        padding: 15px;
    }
    
    .project-action-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        margin-right: 8px;
    }
    
    .project-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Blog Card Visual - Mobile */
    .blog-card-visual {
        height: 250px;
    }
    
    .blog-overlay {
        padding: 15px;
    }
    
    .blog-action-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        margin-right: 8px;
    }
    
    .blog-arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem !important;
        margin: 0.25rem 0;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white !important;
    }
    
    .navbar .container {
        padding: 10px 15px;
        border-radius: 15px;
    }
    
    /* Mobile navbar adjustments */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        padding: 1rem;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .footer-links a {
        padding: 10px 16px;
        font-size: 0.85rem;
        margin-bottom: 6px;
        min-width: 120px;
        border-radius: 8px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom-links a {
        padding: 8px 14px;
        font-size: 0.8rem;
        margin: 2px;
        min-width: 100px;
        border-radius: 8px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        min-width: 100%;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .main-content {
        padding-top: 70px;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-item {
        padding: 0.75rem 0.5rem;
        margin: 0.1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* ===================================
   ENHANCED FOOTER MOBILE RESPONSIVENESS
   =================================== */
@media (max-width: 991.98px) {
    .footer-main {
        padding: 50px 0 30px;
    }
    
    .footer-section {
        padding: 25px 20px;
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
    }
    
    .footer-title {
        font-size: 1.2rem;
        padding: 12px 15px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .footer-bottom-links a {
        min-width: 200px;
    }
}

@media (max-width: 767.98px) {
    .footer-main {
        padding: 40px 0 25px;
    }
    
    .footer-section {
        padding: 20px 15px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-radius: 15px;
    }
    
    .footer-section p {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .footer-title {
        font-size: 1.1rem;
        padding: 10px 12px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
    
    .contact-info .contact-item {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .contact-info .contact-item i {
        align-self: flex-start;
    }
    
    .contact-info .contact-item a,
    .contact-info .contact-item span {
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-bottom {
        padding: 20px 0;
        margin-top: 30px;
    }
    
    .footer-bottom p {
        text-align: center;
        font-size: 0.9rem;
        padding: 8px 12px;
    }
    
    .footer-bottom-links {
        margin-top: 15px;
    }
    
    .footer-bottom-links a {
        min-width: auto;
        width: 100%;
        max-width: 250px;
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

@media (max-width: 575.98px) {
    .footer-section {
        padding: 15px 12px;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ===================================
   SWIPER SLIDER CUSTOMIZATION
   =================================== */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet {
    background-color: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
}

.swiper-button-next,
.swiper-button-prev {
    color: white;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
/* Page hero sections with custom background images should override bg-gradient */
.page-hero-with-image {
    background: none !important;
}

.page-hero-with-image[style*="background-image"],
.hero-section[style*="background-image"] {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.min-vh-35 {
    min-height: 35vh !important;
}

.min-vh-50 {
    min-height: 50vh !important;
}

.min-vh-75 {
    min-height: 75vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.rounded-2xl {
    border-radius: var(--radius-2xl) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.transition-all {
    transition: var(--transition);
}

/* ===================================
   PRODUCTS SECTION STYLES
   =================================== */

/* Products Slider Container */
.products-slider-container {
    margin: 2rem 0;
}

.products-swiper {
    padding: 2rem 0;
    overflow: visible;
}

.products-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

/* Product Card Styles - Simplified for Mobile Performance */
.product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
    transition: none !important;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 500px;
    border: none !important;
}

/* Remove all hover effects for mobile performance */
.product-card:hover {
    transform: none !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06), 0 0 0 3px var(--primary-color) !important;
}

/* Remove pseudo-elements that cause performance issues */
.product-card::before,
.product-card::after {
    display: none !important;
}

/* Simplified product image styling */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 280px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: none !important;
    transform: none !important;
}

/* Remove hover effects on product images */
.product-card:hover .product-image img {
    transform: none !important;
}

/* Remove color variations that cause performance issues */

/* Product Image - Modern Enhanced Design */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    height: 280px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(1) contrast(1.05);
}

/* Remove hover effects that cause mobile lag */
.product-card:hover .product-image img {
    transform: none !important;
    filter: none !important;
}

/* Product Category Badge - Simplified */
.product-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 3;
}

.product-category .badge {
    background: var(--primary-color) !important;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1.2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    letter-spacing: 0.3px;
}

/* Product Content - Clean Design (no price/features) */
.product-content {
    padding: 2rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    text-align: center;
    position: relative;
    z-index: 2;
    gap: 1rem;
}

.product-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    min-height: 3.6rem;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: center;
    flex-grow: 1;
    min-height: 5.1rem;
    max-height: 5.1rem;
    padding: 0 0.5rem;
}

/* Product Price & Features - HIDDEN (not used anymore) */
.product-price,
.product-features {
    display: none !important;
}

/* Legacy styles kept for backward compatibility */
.product-price {
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: var(--card-border);
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.product-price .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: block;
}

.product-features {
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--card-border);
    text-align: center;
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 0.75rem;
    margin-right: 0.5rem;
}

/* Product Actions - Simplified Design */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    justify-content: center;
    padding-top: 1rem;
}

.product-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.875rem 1.5rem;
    min-width: 140px;
    text-align: center;
    letter-spacing: 0.3px;
    transition: none !important;
}

/* Full width button for single action */
.product-actions .btn.w-100 {
    flex: none;
    width: 100%;
    min-width: auto;
}

.product-actions .btn-primary {
    background: var(--primary-color);
    border: 2px solid transparent;
    color: white;
}

/* Remove button hover effects for mobile performance */
.product-actions .btn-primary:hover {
    background: var(--primary-dark) !important;
    transform: none !important;
    box-shadow: none !important;
    color: white;
}

.product-actions .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary-dark);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.product-actions .btn-primary:hover::before {
    opacity: 1;
}

.product-actions .btn-success {
    background: #25d366;
    border: 2px solid #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.product-actions .btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Swiper Navigation Customization */
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
    color: var(--primary-color);
    background: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.products-swiper .swiper-button-next:hover,
.products-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.products-swiper .swiper-button-next::after,
.products-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Swiper Pagination Customization */
.products-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.products-swiper .swiper-pagination-bullet {
    background: var(--text-light);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    transition: var(--transition);
}

.products-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
}

/* Responsive Design for Products - Enhanced */
@media (max-width: 768px) {
    .product-card {
        min-height: 460px;
        margin-bottom: 2rem;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-content {
        padding: 1.75rem 1.5rem;
    }
    
    .product-title {
        font-size: 1.2rem;
        min-height: 3.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
        min-height: 4.8rem;
        max-height: 4.8rem;
    }
    
    .product-price .price {
        font-size: 1.5rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-badge {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-actions .btn {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
        min-width: auto;
        width: 100%;
    }
    
    .products-swiper .swiper-button-next,
    .products-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .products-swiper .swiper-button-next::after,
    .products-swiper .swiper-button-prev::after {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .products-slider-container {
        margin: 1rem 0;
    }
    
    .products-swiper {
        padding: 1rem 0;
    }
    
    .product-card {
        min-height: 420px;
        border-radius: 16px;
    }
    
    .product-image {
        height: 200px;
        border-radius: 16px 16px 0 0;
    }
    
    .product-content {
        padding: 1.5rem 1.25rem;
    }
    
    .product-title {
        font-size: 1.1rem;
        min-height: 2.8rem;
    }
    
    .product-description {
        font-size: 0.85rem;
        min-height: 4.2rem;
        max-height: 4.2rem;
    }
    
    .product-price {
        padding: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .product-price .price {
        font-size: 1.4rem;
    }
    
    .feature-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .product-actions .btn {
        font-size: 0.8rem;
        padding: 0.7rem 1rem;
        border-radius: 12px;
    }
}

/* Products Section Title Enhancement */
.section-title h2 {
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: var(--radius);
}

/* Animation Enhancements - Modern Effects */
@keyframes productSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes productFloatIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(-10deg);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-5px) rotateX(2deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.product-card.animate-on-scroll {
    animation: productFloatIn 0.8s ease-out forwards;
    animation-fill-mode: both;
}

/* Staggered animation for multiple cards */
.product-card.animate-on-scroll:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card.animate-on-scroll:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card.animate-on-scroll:nth-child(3) {
    animation-delay: 0.3s;
}

/* Enhanced Product Card Micro-interactions */
.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Ripple effect on click */
.product-card:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Pulse effect for featured products */
.product-card.featured {
    animation: subtle-pulse 3s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(245, 158, 11, 0.08), 
                    0 4px 16px rgba(0, 0, 0, 0.04);
    }
    50% {
        box-shadow: 0 12px 40px rgba(245, 158, 11, 0.12), 
                    0 6px 20px rgba(0, 0, 0, 0.06);
    }
}

/* ===================================
   MOBILE HEADER OPTIMIZATION
   =================================== */
@media (max-width: 768px) {
    /* Ultra-compact navbar for mobile */
    .navbar {
        padding: 0.15rem 0 !important;
    }
    
    .navbar .container {
        padding: 5px 15px !important;
        margin: 3px auto !important;
        border-radius: 12px !important;
    }
    
    /* Compact logo */
    .navbar-brand .logo-img {
        height: 40px !important;
    }
    
    /* Smaller toggle button */
    .navbar-toggler {
        padding: 0.25rem !important;
        font-size: 0.875rem;
    }
    
    /* Compact nav links */
    .navbar-nav .nav-link {
        padding: 0.4rem 0.6rem !important;
        margin: 0.15rem 0;
        font-size: 0.9rem;
    }
    
    /* Compact navbar collapse */
    .navbar-collapse {
        padding: 0.75rem !important;
        margin-top: 0.5rem !important;
    }
}

/* Extra small devices optimization */
@media (max-width: 480px) {
    .navbar {
        padding: 0.1rem 0 !important;
    }
    
    .navbar .container {
        padding: 4px 12px !important;
        margin: 2px auto !important;
    }
    
    .navbar-brand .logo-img {
        height: 35px !important;
    }
    
    .navbar-toggler {
        padding: 0.2rem !important;
    }
}