:root {
    /* Primary Color Palette - Pastel High-Contrast */
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #fd79a8;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    
    /* Light/Dark Shades */
    --light-bg: #f8f9fa;
    --dark-bg: #2d3436;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navbar-nav .nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
}

.h2 {
    font-size: 2rem;
}

.h4 {
    font-size: 1.25rem;
}

.h5 {
    font-size: 1.1rem;
}

.h6 {
    font-size: 1rem;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

/* Text Colors */
.text-primary {
    color: var(--primary-color);
}

.text-muted {
    color: var(--text-light);
}

/* Sections */
section {
    position: relative;
}

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

/* Team Images */
.rounded-circle {
    object-fit: cover;
}

/* Contact Info */
.contact-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #1a1a1a; /* Darker background for better contrast */
}

footer h5, footer h6 {
    color: #ffffff !important; /* Pure white for headings */
    font-weight: 600;
    margin-bottom: 1.2rem;
}

footer p, footer .small {
    color: #f0f0f0 !important; /* Very light gray for paragraphs */
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

footer ul {
    margin-left: 0;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 0.5rem; /* Add spacing between list items */
}

footer a {
    color: #93c5fd !important; /* Light blue for links */
    text-decoration: underline;
    transition: color 0.2s ease;
}

footer a:hover, footer a:focus {
    color: #dbeafe !important; /* Lighter blue on hover/focus */
    text-decoration: underline;
}

footer hr {
    background-color: #4b5563 !important; /* Medium gray for hr */
    opacity: 0.5;
}

footer small {
    color: #e0e0e0 !important; /* Light gray for small text */
}

/* Add focus styles for keyboard navigation */
footer a:focus {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

/* Gallery */
#gallery img {
    transition: transform 0.3s ease;
}

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

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(108, 92, 231, 0.25);
}

/* Step Numbers and Circles */
.step-number, .step-circle {
    font-weight: 700;
    font-size: 1.25rem;
}

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

.breadcrumb {
    background: none;
    margin-bottom: 0;
}

/* Animations - Respecting prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
    .card, .btn, .navbar-nav .nav-link {
        transition: all 0.3s ease;
    }
}

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

/* Utility Classes */
.text-decoration-none {
    text-decoration: none;
}

.fw-bold {
    font-weight: 700;
}

.fw-medium {
    font-weight: 500;
} 

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


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.linkedin-link {
    background: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
