:root {
    /* Primary Color Palette - Pastel high-contrast colors */
    --primary-color: #6C5CE7;
    --primary-light: #A29BFE;
    --primary-dark: #5F3DC4;
    
    --secondary-color: #FD79A8;
    --secondary-light: #FDCB6E;
    --secondary-dark: #E84393;
    
    --accent-color: #00B894;
    --accent-light: #55EFC4;
    --accent-dark: #00A085;
    
    --neutral-color: #636E72;
    --neutral-light: #DDD;
    --neutral-dark: #2D3436;
    
    --background-color: #FFEAA7;
    --background-light: #FFF5E6;
    --background-dark: #FDCB6E;
    
    /* Typography */
    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    
    /* Border radius */
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: var(--font-family-primary);
    line-height: 1.6;
    color: var(--neutral-dark);
    background-color: #fff;
    overflow-x: hidden;
}

/* Conservative font sizes */
h1, .h1 {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
}

h2, .h2 {
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.3;
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5, .h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

p {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-md);
}

.lead {
    font-size: var(--font-size-large);
    font-weight: 400;
}

/* Conservative navbar brand size */
.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Bootstrap overrides for primary color */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color);
}

.bg-primary {
    background-color: var(--primary-color);
}

.border-primary {
    border-color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-color) 100%);
    position: relative;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape-blob-1 {
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: var(--accent-light);
    border-radius: 50% 40% 60% 30%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-blob-2 {
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: var(--secondary-light);
    border-radius: 40% 60% 30% 50%;
    opacity: 0.15;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

#hero .row {
    position: relative;
    z-index: 2;
}

/* Feature Icons */
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--background-light);
    border-radius: 50%;
    margin: 0 auto;
}

/* Service Cards */
.card {
    border: none;
    border-radius: var(--border-radius-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-img-top {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    height: 200px;
    object-fit: cover;
}

/* Timeline Styles */
.timeline-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

/* Process Numbers */
.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto var(--spacing-md);
}

/* Category Cards */
.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.05);
    background-color: var(--background-light);
}

/* Gallery Lightbox Integration */
.gallery img {
    transition: transform 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Footer Styles */
#footer {
    background-color: var(--neutral-dark);
}

#footer h5, #footer h6 {
    color: var(--accent-light);
}

#footer a:hover {
    color: var(--accent-light);
}

/* Utility Classes */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.rounded-3 {
    border-radius: var(--border-radius-lg);
}

/* Animations for better UX */
.btn {
    transition: all 0.3s ease;
}

.nav-link {
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Form Styles */
.form-control {
    border-radius: var(--border-radius);
    border: 2px solid var(--neutral-light);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }
    
    .shape-blob-1,
    .shape-blob-2 {
        animation: none;
    }
}

/* Custom spacing utilities */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

/* Badge styles */
.badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

/* Image responsive utilities */
.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Custom button styles */
.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);
    color: white;
} 


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
