:root {
    /* Primary Color Palette - Pastel High Contrast */
    --primary-blue: #6C63FF;
    --primary-purple: #9B59B6;
    --primary-teal: #1ABC9C;
    --primary-coral: #FF6B6B;
    --primary-yellow: #F39C12;
    
    /* Light Shades */
    --light-blue: #E8F4FD;
    --light-purple: #F4E6FF;
    --light-teal: #E8F8F5;
    --light-coral: #FFE8E8;
    --light-yellow: #FFF3E0;
    
    /* Dark Shades */
    --dark-blue: #4A47A3;
    --dark-purple: #7D3C98;
    --dark-teal: #138D75;
    --dark-coral: #E74C3C;
    --dark-yellow: #D68910;
    
    /* Neutral Colors */
    --neutral-100: #F8F9FA;
    --neutral-200: #E9ECEF;
    --neutral-300: #DEE2E6;
    --neutral-400: #CED4DA;
    --neutral-500: #ADB5BD;
    --neutral-600: #6C757D;
    --neutral-700: #495057;
    --neutral-800: #343A40;
    --neutral-900: #212529;
}

/* Global Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--neutral-700);
    overflow-x: hidden;
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Conservative Typography */
.navbar-brand {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--primary-blue);
}

h1, .h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-800);
}

h2, .h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--neutral-800);
}

h3, .h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-700);
}

h4, .h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-700);
}

h5, .h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-700);
}

p, .lead {
    font-size: 1rem;
    color: var(--neutral-600);
}

.lead {
    font-size: 1.125rem;
}

/* Header Styles */
#header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--neutral-700);
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
#hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="25" r="15" fill="%23E8F4FD" opacity="0.3"/><circle cx="75" cy="60" r="20" fill="%23F4E6FF" opacity="0.4"/></svg>') no-repeat center;
    background-size: 400px 400px;
    z-index: 1;
}

#hero .container {
    position: relative;
    z-index: 2;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Card Styles */
.card {
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    border-radius: 12px 12px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Background Variations */
.bg-light {
    background-color: var(--neutral-100) !important;
}

/* Feature Icons */
.fa-3x {
    font-size: 2.5rem;
}

.fa-2x {
    font-size: 1.75rem;
}

/* Text Colors */
.text-primary {
    color: var(--primary-blue) !important;
}

.text-muted {
    color: var(--neutral-500) !important;
}

/* Shadows */
.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 1px solid var(--neutral-300);
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
}

/* Badge Styles */
.badge {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.bg-warning {
    background-color: var(--primary-yellow) !important;
}

/* Team Images */
.rounded-circle {
    width: 120px;
    height: 120px;
    object-fit: cover;
}

/* Footer */
#footer {
    background-color: var(--neutral-900) !important;
}

#footer a {
    transition: color 0.3s ease;
}

#footer a:hover {
    color: var(--primary-blue) !important;
}

/* Process Numbers */
.bg-primary {
    background-color: var(--primary-blue) !important;
}

/* Gallery Images */
#gallery img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

/* Timeline Cards */
#timeline .bg-light {
    background-color: var(--light-blue) !important;
}

/* Utilities */
.border-primary {
    border-color: var(--primary-blue) !important;
}

.text-success {
    color: var(--primary-teal) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2rem;
    }
    
    h2, .h2 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .rounded-circle {
        width: 80px;
        height: 80px;
    }
    
    #gallery img {
        height: 180px;
    }
} 


/* 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;
    }
}
