/* Parkers Consultancy Enhanced Professional Styles */

:root {
    --parkers-primary: #1a1a2e;
    --parkers-secondary: #0f3460;
    --parkers-accent: #e94560;
    --parkers-light: #f8f9fa;
    --parkers-gold: #ffd700;
    --parkers-silver: #c0c0c0;
    --parkers-bronze: #cd7f32;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    min-height: 100vh;
    line-height: 1.6;
}

/* Enhanced Navigation */
.parkers-navbar {
    background: linear-gradient(135deg, var(--parkers-primary) 0%, var(--parkers-secondary) 100%);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0;
    border-bottom: 3px solid var(--parkers-accent);
}

/* Ensure the navbar stacks above other sticky elements */
.parkers-navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar-brand {
    position: relative;
    padding: 0.3rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.parkers-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.logo-p {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.nav-link {
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    margin: 0 0.25rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--parkers-accent);
    transform: translateX(-50%);
    transition: var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
    background: rgba(233, 69, 96, 0.15);
    transform: translateY(-2px);
}

/* Enhanced Cards */
.card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: white;
    position: relative;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover::before {
    opacity: 1;
}

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

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

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

.card-img-top-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 16px 16px 0 0;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover .card-overlay {
    opacity: 0.2;
}

.card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Buttons */
.btn {
    border-radius: 8px;
    padding: 0.5rem 0.5rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline-dark {
    border: 2px solid var(--parkers-primary);
    color: var(--parkers-primary);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--parkers-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 26, 46, 0.3);
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Service-specific buttons */
.btn-social {
    background: linear-gradient(135deg, #405DE6, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #FFDC80);
    border: none;
    color: white;
}

.btn-web {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    border: none;
    color: white;
}

.btn-mobile {
    background: linear-gradient(135deg, #f46b45, #eea849);
    border: none;
    color: white;
}

.btn-ai {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    border: none;
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--parkers-primary) 0%, var(--parkers-secondary) 100%);
    color: white;
    padding: 5rem 0;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.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"><circle cx="500" cy="500" r="200" fill="white" opacity="0.03"/></svg>');
    background-size: 300px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(300px, 300px) rotate(360deg); }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #f8f9fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards Enhancement */
.service-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.service-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.badge-social {
    background: linear-gradient(135deg, #405DE6, #833AB4);
    color: white;
}

.badge-web {
    background: linear-gradient(135deg, #11998e, #38ef7d);
    color: white;
}

.badge-mobile {
    background: linear-gradient(135deg, #f46b45, #eea849);
    color: white;
}

.badge-ai {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0);
    color: white;
}

/* Footer Enhancement */
.parkers-footer {
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

.parkers-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 0;
    position: relative;
    display: inline-block;
    transition: var(--transition-smooth);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--parkers-accent);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    width: 100%;
}

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

.animate__fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Grid Layout Enhancement */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .nav-link {
        padding: 0.5rem;
        margin: 0.25rem 0;
    }
    
    .card-img-top {
        height: 160px;
    }
}

/* Loading Animation */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--parkers-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

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

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--parkers-primary), var(--parkers-secondary));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--parkers-secondary), var(--parkers-accent));
}
/* Custom Background Patterns */
.bg-pattern {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* Social Media Patterns */
.bg-pattern-social::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23e94560' fill-opacity='0.3'%3E%3Cpath d='M20,20 Q30,10 40,20 T60,20 Q70,10 80,20 T100,20 V40 H20Z'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Cpath d='M30,70 Q50,90 70,70' stroke='%23e94560' fill='none' stroke-width='2'/%3E%3C/svg%3E");
}

.bg-pattern-instagram::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23E1306C' stroke-width='1.5'%3E%3Crect x='30' y='30' width='40' height='40' rx='8'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Ccircle cx='65' cy='35' r='3'/%3E%3C/svg%3E");
}

.bg-pattern-facebook::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%231877F2'%3E%3Cpath d='M55,30 V50 H70 L68,65 H55 V85 H40 V65 H30 V50 H40 V40 C40,30 45,25 55,25 Z'/%3E%3C/svg%3E");
}

.bg-pattern-tiktok::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23000000'%3E%3Cpath d='M65,35 C60,40 55,35 50,35 V50 C50,60 45,65 35,65 C25,65 20,60 20,50 C20,40 25,35 35,35 V45 C30,45 25,50 30,55 C35,60 40,55 45,50 V30 H55 V45 C55,60 65,65 70,55 V35 Z'/%3E%3C/svg%3E");
}

/* Web Development Patterns */
.bg-pattern-web::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%2311986a' stroke-width='1.5'%3E%3Cpath d='M20,20 L80,20 L90,40 L80,60 L20,60 L10,40 Z'/%3E%3Cpath d='M20,20 V60'/%3E%3Cpath d='M80,20 V60'/%3E%3Cpath d='M20,40 H80'/%3E%3Ccircle cx='50' cy='70' r='8'/%3E%3C/svg%3E");
}

.bg-pattern-code::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%230f3460' stroke-width='2'%3E%3Cpath d='M30,40 L40,50 L30,60'/%3E%3Cpath d='M70,40 L60,50 L70,60'/%3E%3Crect x='35' y='35' width='30' height='30' rx='5'/%3E%3Cline x1='45' y1='40' x2='55' y2='40'/%3E%3Cline x1='45' y1='50' x2='55' y2='50'/%3E%3Cline x1='45' y1='60' x2='55' y2='60'/%3E%3C/svg%3E");
}

/* Mobile Apps Patterns */
.bg-pattern-mobile::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23f46b45' stroke-width='1.5'%3E%3Crect x='35' y='20' width='30' height='60' rx='6'/%3E%3Ccircle cx='50' cy='30' r='2'/%3E%3Crect x='40' y='40' width='20' height='15' rx='2'/%3E%3Ccircle cx='50' cy='75' r='4'/%3E%3Cpath d='M45,85 L55,85'/%3E%3C/svg%3E");
}

.bg-pattern-apps::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23f46b45' fill-opacity='0.2'%3E%3Crect x='20' y='20' width='20' height='20' rx='4'/%3E%3Crect x='45' y='20' width='20' height='20' rx='4'/%3E%3Crect x='70' y='20' width='20' height='20' rx='4'/%3E%3Crect x='20' y='45' width='20' height='20' rx='4'/%3E%3Crect x='45' y='45' width='20' height='20' rx='4'/%3E%3Crect x='70' y='45' width='20' height='20' rx='4'/%3E%3C/svg%3E");
}

/* AI Integration Patterns */
.bg-pattern-ai::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%234A00E0' stroke-width='1.5'%3E%3Ccircle cx='50' cy='50' r='25'/%3E%3Cpath d='M30,30 L40,40'/%3E%3Cpath d='M70,30 L60,40'/%3E%3Cpath d='M30,70 L40,60'/%3E%3Cpath d='M70,70 L60,60'/%3E%3Cpath d='M50,25 V35'/%3E%3Cpath d='M50,65 V75'/%3E%3Cpath d='M25,50 H35'/%3E%3Cpath d='M65,50 H75'/%3E%3C/svg%3E");
}

.bg-pattern-robot::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%238E2DE2' fill-opacity='0.2'%3E%3Crect x='30' y='25' width='40' height='40' rx='5'/%3E%3Ccircle cx='40' cy='35' r='4'/%3E%3Ccircle cx='60' cy='35' r='4'/%3E%3Crect x='45' y='45' width='10' height='5' rx='2'/%3E%3Crect x='35' y='70' width='10' height='15' rx='3'/%3E%3Crect x='55' y='70' width='10' height='15' rx='3'/%3E%3C/svg%3E");
}

/* Graphic Design Patterns */
.bg-pattern-design::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23ff6b6b' stroke-width='1.5'%3E%3Cpath d='M25,25 L75,75'/%3E%3Cpath d='M75,25 L25,75'/%3E%3Ccircle cx='50' cy='50' r='20'/%3E%3Crect x='35' y='35' width='30' height='30' rx='3'/%3E%3C/svg%3E");
}

.bg-pattern-canva::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%2300C4CC' fill-opacity='0.2'%3E%3Crect x='20' y='20' width='60' height='60' rx='5'/%3E%3Ccircle cx='35' cy='35' r='8' fill='%2300C4CC'/%3E%3Ccircle cx='65' cy='35' r='8' fill='%23FF9A00'/%3E%3Ccircle cx='50' cy='65' r='8' fill='%23FF0056'/%3E%3C/svg%3E");
}

/* Floating Animation for Patterns */
@keyframes floatPattern {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, -10px) rotate(1deg);
    }
    50% {
        transform: translate(0, -20px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, -10px) rotate(-1deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.animated-pattern::before {
    animation: floatPattern 20s ease-in-out infinite;
}

/* Dark mode patterns */
.dark-mode .bg-pattern::before {
    opacity: 0.05;
}

.dark-mode .bg-pattern-social::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M20,20 Q30,10 40,20 T60,20 Q70,10 80,20 T100,20 V40 H20Z'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Cpath d='M30,70 Q50,90 70,70' stroke='%23ffffff' fill='none' stroke-width='2'/%3E%3C/svg%3E");
}

/* Floating Icons Animation */
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -20px) rotate(90deg); }
    50% { transform: translate(-10px, -40px) rotate(180deg); }
    75% { transform: translate(-20px, -20px) rotate(270deg); }
}

.floating-icon {
    animation: float 15s infinite linear;
}

/* Pattern Pulse Animation */
@keyframes patternPulse {
    0% { opacity: 0.03; }
    50% { opacity: 0.08; }
    100% { opacity: 0.03; }
}

.pattern-pulse::before {
    animation: patternPulse 2s ease-in-out;
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
    opacity: 0;
}

/* Gradient Animations */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-gradient {
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
}
/* Brand Logo */
.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Hero Section Enhancements */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--parkers-primary) 0%, var(--parkers-secondary) 100%);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image img {
    transition: transform 0.5s ease;
}

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

.floating-icons {
    position: absolute;
    top: 20px;
    right: 20px;
}

.floating-icons i {
    display: block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(2) { animation-delay: 1s; }
.floating-icons i:nth-child(3) { animation-delay: 2s; }
.floating-icons i:nth-child(4) { animation-delay: 3s; }

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    color: white;
}

.bg-gradient-social { background: linear-gradient(135deg, #405DE6, #833AB4, #C13584, #E1306C); }
.bg-gradient-web { background: linear-gradient(135deg, #11998e, #38ef7d); }
.bg-gradient-mobile { background: linear-gradient(135deg, #f46b45, #eea849); }
.bg-gradient-design { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
.bg-gradient-ai { background: linear-gradient(135deg, #8E2DE2, #4A00E0); }

/* Social Media Banner */
.social-media-banner {
    background: linear-gradient(135deg, #405DE6 0%, #833AB4 50%, #C13584 100%);
    position: relative;
    overflow: hidden;
}

.social-media-banner::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"><path d="M20,20 Q30,10 40,20 T60,20 Q70,10 80,20 T100,20 V40 H20Z" fill="white" opacity="0.05"/></svg>');
    background-size: 200px;
}

.social-media-hero {
    background: linear-gradient(135deg, #405DE6 0%, #833AB4 33%, #C13584 66%, #E1306C 100%);
    padding: 100px 0;
}

.platform-icons i {
    transition: transform 0.3s ease;
}

.platform-icons i:hover {
    transform: scale(1.2) translateY(-5px);
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--parkers-accent);
    border-radius: 2px;
}

/* Button Enhancements */
.btn-accent {
    background: var(--parkers-accent);
    color: white;
    border: none;
    font-weight: 100;
}

.btn-accent:hover {
    background: #d6344e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

/* Trust Indicators */
.trust-indicator {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .floating-icons {
        display: none;
    }
    
    .platform-icons i {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 20px;
    }
}

/* Loading Animation for Images */
.img-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Improved Card Layout */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Better Spacing */
.section-spacing {
    padding: 80px 0;
}

/* Enhanced Footer */
.parkers-footer {
    margin-top: 100px;
}
/* Parkers Consultancy Brand Guidelines Styles */

:root {
    /* Brand Colors from Guidelines */
    --parkers-primary: #0A1F44;     /* Midnight Blue */
    --parkers-secondary: #1F6AE1;   /* Electric Blue */
    --parkers-accent: #00C4CC;      /* Teal Mint */
    --parkers-light: #FFFFFF;       /* Soft White */
    --parkers-dark: #0A1F44;        /* Midnight Blue */
    
    /* Color Ratios (60%/25%/10%/5%) */
    --color-ratio-60: #FFFFFF;      /* Backgrounds */
    --color-ratio-25: #0A1F44;      /* Primary elements */
    --color-ratio-10: #1F6AE1;      /* Secondary elements */
    --color-ratio-5: #00C4CC;       /* Accents only */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0A1F44 0%, #1F6AE1 100%);
    --gradient-signature: linear-gradient(135deg, #0A1F44 0%, #1F6AE1 100%);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 31, 68, 0.1);
    --shadow-md: 0 4px 16px rgba(10, 31, 68, 0.15);
    --shadow-lg: 0 8px 32px rgba(10, 31, 68, 0.2);
    --shadow-xl: 0 12px 48px rgba(10, 31, 68, 0.25);
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Typography */
body {
    font-family: var(--font-body);
    color: var(--parkers-primary);
    background-color: var(--color-ratio-60);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--parkers-primary);
}

/* Brand Navigation */
.parkers-navbar {
    background: var(--gradient-primary) !important;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    border-bottom: 3px solid var(--parkers-accent);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.navbar-brand {
    position: relative;
    padding: 0.3rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.navbar-brand:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-link {
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    margin: 0 0.25rem;
    transition: var(--transition-smooth);
    color: rgba(255, 255, 255, 0.9) !important;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
}

.nav-link.active {
    color: var(--parkers-accent) !important;
    background: rgba(0, 196, 204, 0.1);
    border-left: 3px solid var(--parkers-accent);
}

/* Enhanced Cards with Brand Colors */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    background: white;
    position: relative;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(10, 31, 68, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}

.card:hover::before {
    opacity: 1;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--parkers-accent);
}

.card-header {
    background: var(--gradient-primary) !important;
    color: white;
    border-bottom: none;
    font-weight: 600;
}

.card-body {
    padding: 1.5rem;
}

/* Brand Buttons */
.btn {
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--parkers-primary) !important;
    border-color: var(--parkers-primary) !important;
}

.btn-primary:hover {
    background: #08317a !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--parkers-secondary) !important;
    border-color: var(--parkers-secondary) !important;
}

.btn-accent {
    background: var(--parkers-accent) !important;
    border-color: var(--parkers-accent) !important;
    color: var(--parkers-dark) !important;
    font-weight: 600;
}

.btn-accent:hover {
    background: #00a8b0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 196, 204, 0.3);
}

.btn-outline-primary {
    color: var(--parkers-primary);
    border: 2px solid var(--parkers-primary);
    background: transparent;
}

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

/* Hero Sections */
.hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 5rem 0;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0.9));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Cards Enhancement */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(10, 31, 68, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--parkers-accent);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: white;
    background: var(--gradient-primary);
}

/* Brand Badges */
.badge-primary {
    background: var(--parkers-primary) !important;
    color: white;
}

.badge-secondary {
    background: var(--parkers-secondary) !important;
    color: white;
}

.badge-accent {
    background: var(--parkers-accent) !important;
    color: var(--parkers-dark);
}

/* Progress Bars */
.progress {
    background-color: rgba(10, 31, 68, 0.1);
    border-radius: 10px;
    height: 8px;
}

.progress-bar {
    background: var(--gradient-primary) !important;
    border-radius: 10px;
}

/* Alerts with Brand Colors */
.alert-primary {
    background-color: rgba(10, 31, 68, 0.1);
    border-color: var(--parkers-primary);
    color: var(--parkers-primary);
}

.alert-secondary {
    background-color: rgba(31, 106, 225, 0.1);
    border-color: var(--parkers-secondary);
    color: var(--parkers-secondary);
}

.alert-accent {
    background-color: rgba(0, 196, 204, 0.1);
    border-color: var(--parkers-accent);
    color: var(--parkers-dark);
}

/* Section Titles */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--parkers-accent);
    border-radius: 2px;
}

/* Footer Branding */
.parkers-footer {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

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

.parkers-footer a:hover {
    color: white;
    transform: translateX(5px);
}

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

::-webkit-scrollbar-track {
    background: rgba(10, 31, 68, 0.05);
}

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

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #08317a 0%, #1F6AE1 100%);
}

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

.animate__fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Loading Spinner */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(10, 31, 68, 0.1);
    border-top: 3px solid var(--parkers-accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto;
}

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

/* Gradient Backgrounds */
.bg-gradient-social {
    background: linear-gradient(135deg, #405DE6, #833AB4, #C13584, #E1306C) !important;
}

.bg-gradient-web {
    background: linear-gradient(135deg, var(--parkers-primary), var(--parkers-secondary)) !important;
}

.bg-gradient-mobile {
    background: linear-gradient(135deg, #f46b45, #eea849) !important;
}

.bg-gradient-design {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52) !important;
}

.bg-gradient-ai {
    background: linear-gradient(135deg, #8E2DE2, #4A00E0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .nav-link {
        padding: 0.5rem;
        margin: 0.25rem 0;
    }
}

/* Color Ratio Helper Classes */
.bg-ratio-60 { background-color: var(--color-ratio-60); }
.bg-ratio-25 { background-color: var(--color-ratio-25); }
.bg-ratio-10 { background-color: var(--color-ratio-10); }
.bg-ratio-5 { background-color: var(--color-ratio-5); }

/* Card Grid */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* Page Header */
.page-header {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, 
        rgba(10, 31, 68, 0.05) 0%, 
        rgba(31, 106, 225, 0.05) 100%);
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(10, 31, 68, 0.1);
}

/* Form Controls */
.form-control:focus {
    border-color: var(--parkers-accent);
    box-shadow: 0 0 0 0.25rem rgba(0, 196, 204, 0.25);
}

/* Modal Styling */
.modal-header {
    background: var(--gradient-primary);
    color: white;
}

.modal-footer {
    background: rgba(10, 31, 68, 0.05);
}

/* Table Styling */
.table-primary {
    background-color: rgba(10, 31, 68, 0.05);
}

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