:root {
    /* Pastel Color Palette */
    --primary-color: #6c7ae0;
    --primary-light: #8b94e8;
    --primary-dark: #5a68d1;
    --secondary-color: #f8f9fa;
    --secondary-light: #ffffff;
    --secondary-dark: #e9ecef;
    --accent-color: #ff6b8a;
    --accent-light: #ff8ca3;
    --accent-dark: #e55a7a;
    --success-color: #4ecdc4;
    --success-light: #6ed6cf;
    --success-dark: #3bb8b0;
    --warning-color: #ffd93d;
    --warning-light: #ffe066;
    --warning-dark: #e6c235;
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #6c757d;
    --text-light: #adb5bd;
    
    /* Background Colors */
    --bg-gradient: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%);
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Bootstrap Override - Conservative Font Sizes */
.navbar-brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
}

h5, h6 {
    font-weight: 500;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Custom Components */
.hero-shapes {
    position: relative;
    z-index: -1;
}

.shape-1, .shape-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: -50px;
    right: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    bottom: -30px;
    left: -30px;
}

/* Feature Cards */
.feature-card {
    padding: 2rem 1rem;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
    background: var(--bg-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Service Cards */
.service-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card .card-body {
    padding: 2rem;
}

.service-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* Feature Items */
.feature-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
}

/* Pricing Cards */
.pricing-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    background: var(--bg-gradient);
    color: white;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-card.featured .price {
    color: white;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-card.featured li {
    border-bottom-color: rgba(255,255,255,0.2);
}

/* Team Members */
.team-member img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* Review Cards */
.review-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.reviewer {
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* Case Study Cards */
.case-study-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.case-study-card:hover {
    transform: translateY(-5px);
}

.case-study-card img {
    height: 200px;
    object-fit: cover;
}

/* Process Steps */
.process-step {
    padding: 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Blog Cards */
.blog-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    height: 200px;
    object-fit: cover;
}

/* FAQ Cards */
.faq-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 1rem;
}

.faq-card h6 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Gallery */
#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
    padding: 2rem;
}

/* Additional Page Cards */
.insight-card, .report-card, .research-card, .case-card, 
.interview-card, .tool-card, .learning-card, .api-card, 
.community-card, .support-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.insight-card:hover, .report-card:hover, .research-card:hover, 
.case-card:hover, .interview-card:hover, .tool-card:hover, 
.learning-card:hover, .api-card:hover, .community-card:hover, 
.support-card:hover {
    transform: translateY(-5px);
}

/* Breadcrumb Section */
.breadcrumb-section img {
    max-height: 50px;
    object-fit: contain;
}

/* Button Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Footer */
#footer {
    background-color: #2c3e50;
}

#footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-light);
}

/* Animations - prefers-reduced-motion support */
@media (prefers-reduced-motion: no-preference) {
    .feature-card, .service-card, .pricing-card, .case-study-card, .blog-card {
        transition: transform 0.3s ease;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
    }
} 


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 24px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }
}
