:root {
    --primary-color: #8FBC8F;
    --secondary-color: #DDA0DD;
    --accent-color: #F0E68C;
    --neutral-color: #D3D3D3;
    --earth-color: #CD853F;
    
    --primary-light: #B8D8B8;
    --primary-dark: #6B8E6B;
    --secondary-light: #E6B8E6;
    --secondary-dark: #B87FB8;
    --accent-light: #F5F0A0;
    --accent-dark: #E6D766;
    --neutral-light: #E8E8E8;
    --neutral-dark: #A8A8A8;
    --earth-light: #D4A574;
    --earth-dark: #A0662F;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    position: relative;
    overflow: hidden;
}

.hero-decorative-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.1;
    top: -100px;
    right: -100px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--secondary-dark);
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--earth-dark);
}

p {
    font-size: 1rem;
    color: #666;
}

.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

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

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.price {
    color: var(--earth-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature-item i {
    color: var(--secondary-color);
}

.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.stat-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

#gallery img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

#gallery img:hover {
    transform: scale(1.05);
}

.mission-item,
.platform-service,
.support-item {
    text-align: center;
    padding: 1.5rem;
}

.mission-item i,
.platform-service i,
.support-item i {
    color: var(--primary-color);
}

.story-milestone {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-card .card-body i {
    color: var(--secondary-color);
}

.sustainability-service .card-body i {
    color: var(--earth-color);
}

.getting-started-step .step-number {
    width: 50px;
    height: 50px;
    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;
}

.success-story {
    border-left: 4px solid var(--accent-color);
}

.join-card .card-body i {
    color: var(--earth-color);
}

footer {
    background-color: #2c3e50;
}

footer a {
    color: var(--neutral-light);
    text-decoration: none;
}

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

.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item img {
    border-radius: 3px;
}

.process-step {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.process-step .step-icon i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-item {
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

.career-item {
    transition: transform 0.3s ease;
}

.career-item:hover {
    transform: translateY(-5px);
}

.info-card .card-body i {
    color: var(--accent-dark);
}

.blog-post {
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.team-hover {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero-section {
        padding-top: 2rem;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .process-step,
    .timeline-item,
    .career-item,
    .blog-post {
        transform: none;
    }
    
    .timeline-item:hover,
    .career-item:hover,
    .blog-post:hover {
        transform: none;
    }
} 

.hero-section h1 {
    padding-top: 150px;
}


/* 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;
    }
}
