:root {
    /* Primary Color Palette - Pastel High-Contrast Colors */
    --primary-green: #6B8E23;
    --primary-blue: #4682B4;
    --primary-orange: #FF8C00;
    --primary-purple: #9370DB;
    --primary-teal: #20B2AA;
    
    /* Light/Dark Shades */
    --light-green: #E8F5E8;
    --dark-green: #556B2F;
    --light-blue: #E6F3FF;
    --dark-blue: #2F4F4F;
    --light-orange: #FFF8DC;
    --dark-orange: #CC7000;
    --light-purple: #F3E8FF;
    --dark-purple: #663399;
    --light-teal: #E0F7FA;
    --dark-teal: #1A9B96;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    /* Typography */
    --font-size-base: 1rem;
    --font-size-small: 0.875rem;
    --font-size-large: 1.125rem;
    --line-height-base: 1.5;
}

/* Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--dark-gray);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-green);
}

h2 {
    font-size: 2rem;
    color: var(--primary-blue);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-purple);
}

h4 {
    font-size: 1.25rem;
    color: var(--primary-teal);
}

p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
}

/* Header */
.header .navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

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

.navbar-nav .nav-link {
    color: var(--dark-gray);
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-blue);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--light-blue) 100%);
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    padding-top: 275px;
}

.hero-section h2 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}

.hero-section p {
    font-size: var(--font-size-large);
    color: var(--gray);
}

/* Sections */
section {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

/* Feature Cards */
.feature-card {
    padding: 2rem;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    color: var(--primary-teal);
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.service-card .card-title {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card ul li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    text-align: center;
    margin-top: auto;
}

/* Price Plan Cards */
.price-card {
    border: 2px solid var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.price-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 1.5rem;
}

/* Team Members */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--primary-teal);
}

.team-member h4 {
    color: var(--primary-green);
    margin-top: 1rem;
}

.team-member p {
    color: var(--gray);
    font-style: italic;
}

/* Review Cards */
.review-card {
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-purple) 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.review-card h5 {
    color: var(--primary-green);
    font-weight: 600;
}

/* Case Study Cards */
.case-card {
    border: none;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.case-card h4 {
    color: var(--primary-purple);
}

/* Process Steps */
.process-step {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h4 {
    color: var(--primary-blue);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-teal);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.timeline-item:nth-child(odd) {
    margin-left: 0;
}

.timeline-item:nth-child(even) {
    margin-left: 55%;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-orange);
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd)::before {
    right: -35px;
}

.timeline-item:nth-child(even)::before {
    left: -35px;
}

.timeline-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

/* Career Cards */
.career-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.career-card h4 {
    color: var(--primary-purple);
}

.role-type {
    background: var(--primary-teal);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Info Cards */
.info-card {
    border: none;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    padding: 2rem;
}

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

.info-card i {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.info-card h4 {
    color: var(--primary-blue);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: var(--font-size-base);
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(70, 130, 180, 0.25);
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: var(--font-size-large);
}

.contact-item i {
    color: var(--primary-teal);
    width: 30px;
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.blog-card h4 {
    color: var(--primary-green);
}

.blog-card .btn-outline-primary {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

.blog-card .btn-outline-primary:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* FAQ Cards */
.faq-card {
    border: none;
    border-radius: 10px;
    background: var(--light-green);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-3px);
}

.faq-card h5 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

.faq-card p {
    color: var(--dark-gray);
    margin-bottom: 0;
}

/* Gallery */
.gallery-section .col-lg-3 {
    padding: 0.5rem;
}

.gallery-section img {
    border-radius: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-section img:hover {
    transform: scale(1.05);
}

/* Feature Items */
.feature-item {
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

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

.feature-item h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: var(--font-size-large);
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background-color: var(--dark-gray);
}

.footer h5 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer p {
    color: #ADB5BD;
    margin-bottom: 0.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #ADB5BD;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--white);
}

/* Breadcrumb */
.breadcrumb-section {
    background: var(--light-gray);
    padding: 2rem 0;
}

.breadcrumb-img {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

/* Space Page */
#space {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
    padding: 3rem;
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    .sal-animate {
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
}

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

/* General Utilities */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.py-5 {
    padding: 3rem 0;
}

.h-100 {
    height: 100%;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.min-vh-100 {
    min-height: 100vh;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
