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

/* CSS Variables for Theme Colors */
:root {
    /* Colors */
    --primary-color: #03c1f4;
    --secondary-color: #f79e2f;
    /* WhatsApp brand color */
    --whatsapp-color: #25D366;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    
    /* Gradients - Improved for better visual appeal */
    --primary-gradient: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    --secondary-gradient: linear-gradient(135deg, #f79e2f 0%, #f68e1e 100%);
    --light-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --radiant-gradient: linear-gradient(180deg, #f79e2f 0%, #f68e1e 20%, #e8f4fd 40%, #f8fbff 60%, #e8f4fd 80%, #2c3e50 100%);
    
    /* New improved gradients */
    --blue-gradient: linear-gradient(135deg, #03c1f4 0%, #0099cc 100%);
    --orange-gradient: linear-gradient(135deg, #f79e2f 0%, #f68e1e 100%);
    --blue-orange-gradient: linear-gradient(135deg, #03c1f4 0%, #f79e2f 100%);
    --orange-blue-gradient: linear-gradient(135deg, #f79e2f 0%, #03c1f4 100%);
    --soft-blue-gradient: linear-gradient(135deg, #e8f4fd 0%, #d1ecf1 100%);
    --soft-orange-gradient: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    --success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --warning-gradient: linear-gradient(135deg, #ffc107 0%, #ffb84d 100%);
    --danger-gradient: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    --light-purple-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --light-blue-gradient: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --light-green-gradient: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%);
    --light-orange-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #343a40;
    
    /* Border Colors */
    --border-color: #dee2e6;
    --border-light: #e9ecef;
    --border-dark: #495057;
    
    /* Shadow Variables */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 20px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

/* Add proper spacing for fixed header */
main {
    margin-top: 120px; /* Adjust for header + marquee height */
    position: relative;
    z-index: 1;
}

/* Ensure all content below header has lower z-index */
main * {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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 {
    font-weight: 400;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Header Styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.5rem 0;
    min-width: 250px;
}

.dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

/* Ensure dropdown menu shows on hover */
.dropdown-menu.show {
    display: block !important;
}

/* Dropdown Menu Styles - Override Bootstrap defaults */
.dropdown-menu {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 99999 !important;
    min-width: 250px !important;
    padding: 0.5rem 0 !important;
    margin: 0.125rem 0 0 !important;
    font-size: 0.875rem !important;
    color: #212529 !important;
    text-align: left !important;
    list-style: none !important;
    background-color: #fff !important;
    background-clip: padding-box !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 0.375rem !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
    transform: none !important;
    inset: auto !important;
}

/* Ensure dropdown appears above other elements */
.navbar-nav .dropdown {
    position: relative !important;
}

.navbar-nav .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 99999 !important;
    margin: 0 !important;
    transform: none !important;
    inset: auto !important;
}

/* Override Bootstrap's dropdown positioning */
.dropdown-menu[data-bs-popper] {
    top: 100% !important;
    left: 0 !important;
    margin-top: 0.125rem !important;
    margin-bottom: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Additional Bootstrap overrides */
.dropdown-menu.show {
    display: block !important;
    z-index: 999999 !important;
}

/* Force all dropdown menus to appear above content */
ul.dropdown-menu {
    z-index: 999999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    margin: 0 !important;
    transform: none !important;
    inset: auto !important;
}

/* Brand icon styling */
.brand-icon {
    height: 32px;
    width: auto;
    vertical-align: middle;
}

/* Complete logo icon styling - for header without text */
.brand-logo {
    height: 50px;
    width: auto;
    vertical-align: middle;
    display: inline-block;
    max-width: 200px;
}

/* Header logo specific styling */
.navbar-brand .brand-logo {
    height: 45px;
    max-width: 180px;
}

/* Footer logo specific styling */
.footer .brand-logo {
    height: 60px;
    max-width: 220px;
}

/* Header positioning */
.header {
    position: relative;
    z-index: 10000;
}

.navbar {
    position: relative;
    z-index: 10000;
}

.navbar-nav {
    position: relative;
    z-index: 10001;
}

/* Dropdown arrow styling */
.dropdown-toggle .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Ensure dropdown toggle is properly aligned */
.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-menu.show {
    display: block !important;
}

/* Dropdown menu items styling */
.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropdown-item:hover {
    color: #16181b;
    background-color: #f8f9fa;
}

.dropdown-header {
    display: block;
    padding: 0.75rem 1rem 0.5rem 1rem;
    margin-bottom: 0;
    font-size: 0.75rem;
    color: #6c757d;
    white-space: nowrap;
    font-weight: 700;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ensure dropdown menu doesn't overflow */
.dropdown-menu {
    max-width: 280px;
    overflow: hidden;
}

/* Ensure all dropdown content stays within bounds */
.dropdown-menu * {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover effect for dropdown */
.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure dropdown is always on top */
.dropdown-menu {
    pointer-events: auto !important;
}

/* Force dropdown to appear above everything */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block !important;
    z-index: 999999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
}

/* Animation for dropdown */
.dropdown-menu {
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    display: block !important;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block !important;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: #e9ecef;
}
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 40px; /* Position below marquee */
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    height: 80px; /* Fixed height for header */
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition);
    height: 100%;
}

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

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--whatsapp-color) !important;
    text-decoration: none;
}

/* Ensure the icon in front of brand uses WhatsApp color */
.navbar-brand i {
    color: var(--whatsapp-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-primary) !important;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
}

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

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

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Remove underline effect for dropdown toggles */
.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

.navbar-nav .dropdown-toggle:hover::after {
    display: none !important;
}

@media (max-width: 768px) {
    .navbar-collapse {
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
        padding: 1rem;
    }
    
    main {
        margin-top: 110px; /* Smaller margin for mobile */
    }
}

/* Header Button Styles */
.navbar .btn-primary {
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%) !important;
    border: none !important;
    border-radius: var(--border-radius);
    padding: 0.5rem 1.5rem;
    font-weight: 600 !important;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(3, 193, 244, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block;
}

.navbar .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* General Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%) !important;
    border: none !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 700 !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 193, 244, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.btn-secondary {
    background: linear-gradient(135deg, #f79e2f 0%, #f68e1e 100%) !important;
    border: none !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 700 !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(247, 158, 47, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 158, 47, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.btn-outline-primary {
    border: 3px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: #ffffff !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 700 !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.2) !important;
    text-decoration: none !important;
    display: inline-block;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 193, 244, 0.4) !important;
    border-color: var(--primary-color) !important;
    text-decoration: none !important;
}

/* Light Button for Light Backgrounds */
.btn-light {
    background: #ffffff !important;
    border: 2px solid #e9ecef !important;
    color: #495057 !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600 !important;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    text-decoration: none !important;
    display: inline-block;
}

.btn-light:hover {
    background: #f8f9fa !important;
    color: #212529 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
    text-decoration: none !important;
}

/* Outline Light Button */
.btn-outline-light {
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    background: transparent !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600 !important;
    transition: var(--transition);
    text-decoration: none !important;
    display: inline-block;
}

.btn-outline-light:hover {
    background: #ffffff !important;
    color: #495057 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3) !important;
    text-decoration: none !important;
}

/* Hero Section */
.hero-section {
    background: var(--bg-light);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.meta-partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6e8eb;
}

.meta-partner-badge .meta-logo {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f5f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meta-partner-badge .meta-logo img {
    height: 24px;
}

.meta-partner-badge .meta-text .meta-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    color: #1c1e21;
}

.meta-partner-badge .meta-text .meta-subtitle {
    font-weight: 600;
    font-size: 14px;
    color: #5c6b7a;
    margin-top: 2px;
}

@media (max-width: 576px) {
    .meta-partner-badge {
        padding: 10px 14px;
    }
    .meta-partner-badge .meta-logo {
        width: 38px;
        height: 38px;
    }
    .meta-partner-badge .meta-text .meta-title {
        font-size: 16px;
    }
    .meta-partner-badge .meta-text .meta-subtitle {
        font-size: 13px;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.text-whatsapp {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* Promotional Marquee */
.marquee {
    background: var(--secondary-gradient);
    color: var(--text-light);
    padding: 0.5rem 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 40px;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    margin: 0 2rem;
    font-weight: 500;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
    height: 100%;
}

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

.service-card .icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.4);
}

.service-card .icon-circle i {
    color: white !important;
    font-size: 2.5rem !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-card h5 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

.feature-item {
    margin-bottom: 2rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
    margin-right: 1rem;
    box-shadow: 0 6px 20px rgba(3, 193, 244, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.4);
}

/* Brand Cards */
.brand-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 2rem 1rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.brand-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(100%);
}

.brand-card:hover .brand-icon {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Stats Section - Modern Design */
.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.stats-header {
    margin-bottom: 3rem;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Stat Cards */
.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(3, 193, 244, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(3, 193, 244, 0.15);
    border-color: rgba(3, 193, 244, 0.3);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

/* Icon Wrapper */
.stat-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.3);
    position: relative;
    z-index: 2;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(3, 193, 244, 0.4);
}



/* Stat Content */
.stat-content {
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0.8;
}

/* Progress Bar */
.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(3, 193, 244, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    border-radius: 2px;
    transition: width 1.5s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(3, 193, 244, 0.1);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(3, 193, 244, 0.1);
}

.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.15);
    border-color: rgba(3, 193, 244, 0.3);
}

.trust-item i {
    color: #03c1f4;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.2);
}

.trust-item span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .stats-title {
        font-size: 2.2rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-title {
        font-size: 2rem;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .trust-indicators {
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .trust-item {
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .stats-title {
        font-size: 1.8rem;
    }
    
    .stats-subtitle {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    

    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .stat-description {
        font-size: 0.85rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 576px) {
    .stats-title {
        font-size: 1.6rem;
    }
    
    .stat-card {
        padding: 1.25rem 0.75rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    

    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .stat-description {
        font-size: 0.8rem;
    }
    
    .trust-item {
        padding: 0.5rem 0.75rem;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
}

/* Animation for stats on scroll */
.stat-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Animation */
.stat-number {
    counter-reset: count;
}

.stat-number[data-count] {
    animation: countUp 2s ease-out forwards;
}

@keyframes countUp {
    from {
        counter-reset: count 0;
    }
    to {
        counter-reset: count attr(data-count);
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.testimonial-card:hover .avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(3, 193, 244, 0.4);
}

/* CTA Section */
.cta-section {
    background: var(--dark-gradient);
    padding: 5rem 0;
    color: var(--text-light);
}

.bg-gradient {
    background: var(--primary-gradient);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-section {
        padding: 3rem 0 3rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
}

/* Enhanced Hover Effects */
.hero-content .badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.hero-image img:hover {
    transform: scale(1.02);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    animation: pulse 1s infinite;
}

.brand-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-item:hover .stat-icon {
    animation: pulse 1s infinite;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-light);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
.bg-secondary { background-color: var(--secondary-color) !important; }
.shadow-light { box-shadow: var(--shadow-light) !important; }
.shadow-medium { box-shadow: var(--shadow-medium) !important; }
.rounded-lg { border-radius: var(--border-radius-lg) !important; }
.transition { transition: var(--transition) !important; } 

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
} 

/* Additional Button Styles for All Pages */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600 !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block;
}

.btn-success:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
    border: none !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600 !important;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: inline-block;
}

.btn-danger:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4) !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

.btn-outline-danger {
    border: 2px solid #dc3545 !important;
    color: #dc3545 !important;
    background: transparent !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600 !important;
    transition: var(--transition);
    text-decoration: none !important;
    display: inline-block;
}

.btn-outline-danger:hover {
    background: #dc3545 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3) !important;
    text-decoration: none !important;
}

.btn-outline-secondary {
    border: 2px solid #6c757d !important;
    color: #6c757d !important;
    background: transparent !important;
    border-radius: var(--border-radius);
    padding: 0.75rem 2rem;
    font-weight: 600 !important;
    transition: var(--transition);
    text-decoration: none !important;
    display: inline-block;
}

.btn-outline-secondary:hover {
    background: #6c757d !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3) !important;
    text-decoration: none !important;
}

/* Small Button Styles */
.btn-sm {
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
}

/* Large Button Styles */
.btn-lg {
    padding: 1rem 2.5rem !important;
    font-size: 1.125rem !important;
}

/* Ensure all buttons have proper text decoration */
.btn, .btn:hover, .btn:focus, .btn:active {
    text-decoration: none !important;
    outline: none !important;
} 

/* Services Page Styles */
.services-hero {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 50%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2303c1f4" stop-opacity="0.1"/><stop offset="100%" stop-color="%2303c1f4" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.hero-badge .badge {
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%) !important;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.3);
}

.hero-stats .stat-item {
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.services-grid {
    background: var(--bg-light);
}

.service-card-modern {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    position: relative;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.card-header-modern {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.3);
    transition: var(--transition);
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(3, 193, 244, 0.4);
}

.service-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

.card-body-modern {
    padding: 1rem 2rem 2rem;
}

.service-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    width: 20px;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.service-cta {
    text-align: center;
}

.service-cta .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.3);
    transition: var(--transition);
}

.service-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 193, 244, 0.4);
}

.services-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.cta-card {
    position: relative;
    z-index: 2;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-card .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: var(--transition);
}

.cta-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .service-card-modern {
        margin-bottom: 2rem;
    }
    
    .card-header-modern {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .card-body-modern {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .service-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .cta-card {
        padding: 2rem 1.5rem;
    }
} 

/* Development Page Styles */
.development-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

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

.why-choose-dev {
    background: #ffffff;
    position: relative;
}

.dev-services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tech-stack {
    background: #ffffff;
}

.tech-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--blue-gradient);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.flutter-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.tech-card:hover .tech-icon {
    background: var(--blue-gradient);
    color: #ffffff;
    transform: scale(1.1);
}

.tech-title {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.tech-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.tech-features {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.dev-process {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.process-content {
    padding-right: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--blue-gradient);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
}

.process-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-circle {
    position: relative;
    width: 300px;
    height: 300px;
    border: 3px dashed var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
}

.process-circle::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--light-blue-gradient);
    border-radius: 50%;
    opacity: 0.3;
}

.circle-item {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.8rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.circle-item:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.circle-item i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.circle-item:nth-child(1) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-item:nth-child(2) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.circle-item:nth-child(3) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-item:nth-child(4) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dev-cta {
    background: var(--blue-gradient);
    position: relative;
    overflow: hidden;
}

.dev-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.dev-cta .cta-card {
    position: relative;
    z-index: 2;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 50%, #f8fbff 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%2303c1f4" stop-opacity="0.1"/><stop offset="100%" stop-color="%2303c1f4" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

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

.company-story {
    background: var(--bg-white);
}

.section-badge .badge {
    background: var(--blue-gradient) !important;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.3);
}

.story-timeline {
    margin-top: 2rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.3);
}

.timeline-content h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
}

.story-image {
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
}

.main-image {
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.floating-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.badge-item {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
}

.badge-item:nth-child(1) {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.badge-item:nth-child(2) {
    bottom: 30%;
    left: -30px;
    animation-delay: 1.5s;
}

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

.mission-vision {
    background: var(--bg-light);
}

.mission-card, .vision-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    position: relative;
    height: 100%;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.mission-card::before {
    background: var(--blue-gradient);
}

.vision-card::before {
    background: var(--orange-gradient);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.3);
    transition: var(--transition);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(247, 158, 47, 0.3);
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(3, 193, 244, 0.4);
}

.vision-card:hover .vision-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(247, 158, 47, 0.4);
}

.mission-title, .vision-title {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
}

.mission-description, .vision-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-features, .vision-features {
    margin-top: 1.5rem;
}

.values-section {
    background: var(--bg-white);
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 100%;
    border: none;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--light-blue-gradient);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.value-icon-modern {
    width: 80px;
    height: 80px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.3);
    transition: var(--transition);
}

.value-card:hover .value-icon-modern {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(3, 193, 244, 0.4);
}

.value-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.team-section {
    background: var(--bg-light);
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    height: 100%;
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--light-blue-gradient);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.team-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

.team-avatar-modern {
    width: 80px;
    height: 80px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.3);
    transition: var(--transition);
}

.team-card:hover .team-avatar-modern {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(3, 193, 244, 0.4);
}

.team-title {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0;
}

.team-body {
    padding: 1rem 2rem 2rem;
}

.team-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.skill-tag {
    background: var(--blue-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(3, 193, 244, 0.3);
}

.about-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-icon {
        margin: 0 auto 1rem;
    }
    
    .floating-badges {
        display: none;
    }
    
    .value-card, .team-card {
        margin-bottom: 2rem;
    }
    
    .value-icon-modern, .team-avatar-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .value-title, .team-title {
        font-size: 1.25rem;
    }
} 

/* Services Page Compact Styles */
.why-choose-us {
    background: var(--bg-white);
}

.motivational-content {
    padding-right: 2rem;
}

.motivational-points {
    margin-top: 2rem;
}

.point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.point-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.point-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(3, 193, 244, 0.3);
}

.point-content h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.point-content p {
    color: var(--text-secondary);
    margin: 0;
}

.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.stat-bubble:nth-child(1) {
    top: 20%;
    right: -30px;
    animation-delay: 0s;
}

.stat-bubble:nth-child(2) {
    bottom: 30%;
    left: -40px;
    animation-delay: 1.5s;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.core-services {
    background: var(--bg-light);
}

.service-card-compact {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    height: 100%;
    position: relative;
}

.service-card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--light-blue-gradient);
}

.service-card-compact:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.card-header-compact {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

.service-icon-compact {
    width: 60px;
    height: 60px;
    background: var(--blue-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(3, 193, 244, 0.3);
    transition: var(--transition);
}

.service-card-compact:hover .service-icon-compact {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.4);
}

.service-title-compact {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
}

.card-body-compact {
    padding: 1rem 1.5rem 1.5rem;
}

.service-description-compact {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-features-compact {
    margin-bottom: 1.5rem;
}

.feature-item-compact {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.feature-item-compact i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.feature-item-compact span {
    color: var(--text-secondary);
}

.service-cta-compact {
    text-align: center;
}

.premium-features {
    background: var(--bg-white);
}

.premium-content {
    padding-right: 2rem;
}

.premium-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--light-orange-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(247, 158, 47, 0.2);
}

.benefit-content h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.premium-card {
    background: var(--light-purple-gradient);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.premium-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.premium-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.premium-features-list {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.premium-feature {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: white;
}

.premium-feature i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
    color: #28a745;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.premium-feature span {
    font-weight: 600;
}

.premium-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

.success-stories {
    background: var(--bg-light);
}

.story-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: var(--transition);
    border: none;
    height: 100%;
    position: relative;
}

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--light-green-gradient);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.story-header {
    padding: 1.5rem 1.5rem 1rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4fd 100%);
}

.story-avatar {
    width: 50px;
    height: 50px;
    background: var(--light-green-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 1rem;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.story-info h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.story-info span {
    font-size: 0.85rem;
}

.story-content {
    padding: 1rem 1.5rem 1.5rem;
}

.story-quote {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-stats {
    display: flex;
    justify-content: space-between;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
}

/* Responsive Design for Services Page */
@media (max-width: 768px) {
    .motivational-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .point-item, .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .point-icon, .benefit-icon {
        margin: 0 auto 1rem;
    }
    
    .floating-stats {
        display: none;
    }
    
    .service-card-compact, .story-card {
        margin-bottom: 1.5rem;
    }
    
    .service-icon-compact {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-title-compact {
        font-size: 1.1rem;
    }
    
    .premium-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .premium-card {
        padding: 1.5rem;
    }
    
    .premium-header h3 {
        font-size: 1.5rem;
    }
    
    .story-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive Styles for Development Page */
@media (max-width: 768px) {
    .development-hero {
        padding: 3rem 0;
    }
    
    .development-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .why-choose-dev {
        padding: 3rem 0;
    }
    
    .motivational-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .motivational-points {
        gap: 1.5rem;
    }
    
    .point-item {
        flex-direction: column;
        text-align: center;
    }
    
    .point-icon {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    
    .dev-services {
        padding: 3rem 0;
    }
    
    .tech-stack {
        padding: 3rem 0;
    }
    
    .tech-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .dev-process {
        padding: 3rem 0;
    }
    
    .process-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .process-visual {
        height: 300px;
    }
    
    .process-circle {
        width: 250px;
        height: 250px;
    }
    
    .circle-item {
        width: 60px;
        height: 60px;
        font-size: 0.7rem;
    }
    
    .circle-item i {
        font-size: 1.2rem;
    }
    
    .dev-cta {
        padding: 3rem 0;
    }
}

/* Legal Pages Styles */
.privacy-hero, .terms-hero, .cookies-hero, .gdpr-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before, .terms-hero::before, .cookies-hero::before, .gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.privacy-content, .terms-content, .cookies-content, .gdpr-content {
    background: #ffffff;
}

.policy-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.section-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.section-text {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.policy-list li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.policy-list li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Cookie Types */
.cookie-type {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.cookie-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* GDPR Rights */
.right-item {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.right-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.right-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.right-action {
    background: rgba(3, 193, 244, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
}

/* GDPR Form */
.gdpr-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.form-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.form-title {
    color: var(--text-primary);
    font-weight: 700;
}

.gdpr-request-form .form-label {
    font-weight: 600;
    color: var(--text-primary);
}

.gdpr-request-form .form-control,
.gdpr-request-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem;
    transition: var(--transition);
}

.gdpr-request-form .form-control:focus,
.gdpr-request-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 193, 244, 0.25);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

.cookie-banner a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* CTA Sections */
.privacy-cta, .terms-cta, .cookies-cta, .gdpr-cta {
    background: var(--blue-gradient);
    position: relative;
    overflow: hidden;
}

.privacy-cta::before, .terms-cta::before, .cookies-cta::before, .gdpr-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.privacy-cta .cta-card, .terms-cta .cta-card, .cookies-cta .cta-card, .gdpr-cta .cta-card {
    position: relative;
    z-index: 2;
}

/* Responsive Styles for Legal Pages */
@media (max-width: 768px) {
    .policy-card, .form-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .cookie-type, .right-item {
        padding: 1rem;
    }
    
    .cookie-title, .right-title {
        font-size: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .cookie-banner {
        padding: 0.75rem 0;
    }
    
    .cookie-banner .row {
        text-align: center;
    }
    
    .cookie-banner .col-lg-4 {
        margin-top: 1rem;
    }
}

/* Blog Page Styles */
.blog-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

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

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

.search-container {
    max-width: 500px;
    margin: 0 auto;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.category-filter .btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Featured Post */
.featured-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

.featured-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-content {
    padding: 2rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

.featured-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.featured-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.featured-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-light);
}

.widget-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.widget-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.popular-post:hover {
    background: #ffffff;
    box-shadow: var(--shadow-light);
}

.post-thumbnail {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.post-info h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.post-info .date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Newsletter Form */
.newsletter-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.75rem;
}

.newsletter-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(3, 193, 244, 0.25);
}

/* Blog Posts Grid */
.posts-grid {
    display: grid;
    gap: 2rem;
}

.blog-post {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.blog-post:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

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

.post-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

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

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gradient);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.3;
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--text-primary);
    text-decoration: none;
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.count {
    background: var(--bg-light);
    color: var(--text-muted);
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.75rem;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-cloud .tag {
    background: var(--bg-light);
    color: var(--text-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag-cloud .tag:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* Pagination */
.pagination-container {
    margin-top: 3rem;
}

.pagination .page-link {
    color: var(--primary-color);
    border-color: var(--border-color);
}

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

.pagination .page-link:hover {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

/* Blog CTA */
.blog-cta {
    background: var(--blue-gradient);
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.blog-cta .cta-card {
    position: relative;
    z-index: 2;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .category-filter {
        gap: 0.25rem;
    }
    
    .category-filter .btn {
        padding: 0.4rem 1rem;
        font-size: 0.875rem;
    }
    
    .featured-content {
        padding: 1.5rem;
    }
    
    .featured-title {
        font-size: 1.3rem;
    }
    
    .sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
    
    .popular-post {
        padding: 0.75rem;
    }
    
    .post-thumbnail {
        width: 50px;
        height: 50px;
    }
    
    .post-content {
        padding: 1rem;
    }
    
    .post-title {
        font-size: 1rem;
    }
    
    .blog-post {
        margin-bottom: 1.5rem;
    }
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    position: relative;
}

.blog-detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-muted);
}

.article-header {
    position: relative;
    z-index: 2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.article-meta span {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-excerpt {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

/* Article Content */
.article-content {
    background: #ffffff;
}

.blog-article {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

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

.article-body {
    padding: 3rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-body h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
}

.article-body h3 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
}

.article-body h4 {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.2rem;
    margin: 1.2rem 0 0.8rem 0;
}

.article-body p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.article-body ul, .article-body ol {
    margin-bottom: 1.2rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

/* Info and Warning Boxes */
.info-box, .warning-box {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: var(--border-radius);
}

.warning-box {
    border-left-color: #ffc107;
    background: #fff3cd;
}

.info-box h4, .warning-box h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-box ul, .warning-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.info-box li, .warning-box li {
    margin-bottom: 0.5rem;
}

/* CTA Box */
.cta-box {
    background: var(--primary-gradient);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 3rem 0;
}

.cta-box h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Article Footer */
.article-footer {
    padding: 2rem 3rem;
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
}

.article-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat i {
    color: var(--primary-color);
}

.social-sharing h5 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Comments Section */
.comments-section {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--shadow-light);
}

.comments-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.comment-form {
    margin-bottom: 2rem;
}

.comment-form textarea {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    resize: vertical;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comment {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
}

.comment-avatar {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.comment-content {
    flex: 1;
}

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

.comment-header h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin: 0;
}

.comment-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.comment-content p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

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

.comment-actions .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    padding: 0;
}

/* Author Card */
.author-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.author-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h5 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 0.5rem;
}

.author-social a {
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition);
}

.author-social a:hover {
    color: var(--primary-color);
}

/* Table of Contents */
.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.toc-list a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 0;
    border-left: 3px solid transparent;
    padding-left: 1rem;
    transition: var(--transition);
}

.toc-list a:hover {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    background: var(--bg-light);
}

/* Related Posts */
.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.related-post:hover {
    background: #ffffff;
    box-shadow: var(--shadow-light);
}

.related-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.related-content h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    line-height: 1.3;
}

.related-content h6 a {
    color: inherit;
    text-decoration: none;
}

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

.related-content .date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Enhanced Blog Post Styles */
.post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post:hover .post-overlay {
    opacity: 1;
}

.post-actions {
    display: flex;
    gap: 0.5rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.post-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-stats span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Responsive Blog Detail Styles */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }
    
    .article-body {
        padding: 2rem 1.5rem;
    }
    
    .article-footer {
        padding: 1.5rem;
    }
    
    .article-stats {
        gap: 1rem;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
    }
    
    .author-avatar {
        width: 80px;
        height: 80px;
        margin: 0 auto;
    }
    
    .related-post {
        flex-direction: column;
        text-align: center;
    }
    
    .related-thumbnail {
        width: 100%;
        height: 120px;
    }
} 

/* Why Choose Section */
.why-choose-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.4);
    position: relative;
    z-index: 1;
}

.icon-circle i {
    color: white !important;
    font-size: 2.5rem !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.feature-card h5 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Additional fixes for icon visibility and layout */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.4);
    position: relative;
    z-index: 1;
}

.icon-circle i {
    color: white !important;
    font-size: 2.5rem !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Ensure proper spacing between cards */
.feature-card, .service-card {
    margin-bottom: 30px !important;
    padding: 2rem !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .icon-circle i {
        font-size: 2rem !important;
    }
    
    .feature-card, .service-card {
        padding: 1.5rem !important;
    }
}

/* Ensure cards don't overlap */
.row.g-4 {
    margin-left: -1rem;
    margin-right: -1rem;
}

.row.g-4 > * {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Hero Section Feature Icons */
.feature-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(3, 193, 244, 0.3);
    margin-right: 15px;
}

.feature-icon-circle i {
    color: white !important;
    font-size: 1.5rem !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.feature-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.feature-item h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-item p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Ensure all icons are properly centered */
.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03c1f4 0%, #00a8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.4);
    position: relative;
    z-index: 1;
}

.icon-circle i {
    color: white !important;
    font-size: 2.5rem !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Trusted Brands Section - Marquee Style */
.trusted-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(3, 193, 244, 0.05) 0%, rgba(247, 158, 47, 0.05) 100%);
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

/* Marquee Brands Container */
.brands-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    padding: 2rem 0;
}

.brands-marquee {
    display: flex;
    align-items: center;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    min-width: 200px;
    height: 80px;
    margin: 0 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.brand-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.brand-logo-img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: var(--transition);
}

.brand-item:hover .brand-logo-img {
    filter: grayscale(0%);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.brands-marquee-container:hover .brands-marquee {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .brand-item {
        min-width: 150px;
        padding: 0 1rem;
        margin: 0 0.5rem;
    }
    
    .brand-logo-img {
        max-height: 50px;
    }
    
    .brands-marquee {
        animation-duration: 20s;
    }
}

@media (max-width: 576px) {
    .brand-item {
        min-width: 120px;
        padding: 0 0.75rem;
        margin: 0 0.25rem;
    }
    
    .brand-logo-img {
        max-height: 40px;
    }
    
    .brands-marquee {
        animation-duration: 15s;
    }
}

/* Contact Cards Design */
.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #03c1f4, #0099cc);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon-wrapper {
    position: relative;
}

.contact-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03c1f4, #0099cc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(3, 193, 244, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-circle {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(3, 193, 244, 0.4);
}

.contact-icon-circle i {
    font-size: 28px;
    color: white;
}

.contact-card h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-card p {
    color: #6c757d;
    line-height: 1.5;
}

.contact-card a {
    color: #6c757d;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #03c1f4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 20px;
    }
    
    .contact-icon-circle {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon-circle i {
        font-size: 24px;
    }
}