:root {
    /* Primary Colors */
    --primary-color: #6f42c1;
    --secondary-color: #20c997;
    --accent-color: #fd7e14;
    --neutral-color: #6c757d;
    --success-color: #198754;
    
    /* Light Variations */
    --primary-light: #b19cd9;
    --secondary-light: #8fe5d3;
    --accent-light: #feb272;
    --neutral-light: #adb5bd;
    --success-light: #75b798;
    
    /* Dark Variations */
    --primary-dark: #4a2c87;
    --secondary-dark: #147765;
    --accent-dark: #cc5500;
    --neutral-dark: #495057;
    --success-dark: #0f5132;
    
    /* Additional Variables */
    --body-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --heading-font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --border-radius: 0.5rem;
    --box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--body-font-family);
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font-family);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.25rem;
}

h2 {
    font-size: 1.875rem;
}

h3 {
    font-size: 1.5rem;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

/* Navigation */
.navbar {
    transition: var(--transition);
    padding: 1rem 0;
}

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

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    transition: var(--transition);
    padding: 0.5rem 1rem;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%236f42c1" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%2320c997" opacity="0.1"/><circle cx="40" cy="60" r="1.5" fill="%23fd7e14" opacity="0.1"/></svg>');
    pointer-events: none;
}

/* Cards */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

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

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

/* Buttons */
.btn {
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.75rem 1.5rem;
}

.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);
}

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

.bg-light {
    background-color: #f8f9fa;
}

/* Team Section - USING BOOTSTRAP GRID INSTEAD */
.col-lg-2-4 {
    /* Custom 5-column layout for large screens */
    flex: 0 0 auto;
    width: 20%;
}

/* Bootstrap compatible approach for 5 columns */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Forms */
.form-control {
    border-radius: var(--border-radius);
    border: 1px solid #dee2e6;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(111, 66, 193, 0.25);
}

/* Icons */
.fa-3x {
    font-size: 3rem;
}

.fa-2x {
    font-size: 2rem;
}

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

.text-success {
    color: var(--success-color);
}

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

/* Background Colors */
.bg-primary {
    background-color: var(--primary-color);
}

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

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

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

.bg-info {
    background-color: #0dcaf0;
}

/* Footer */
footer {
    background-color: #212529;
}

footer a {
    transition: var(--transition);
}

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

/* Breadcrumb */
.breadcrumb-section {
    border-bottom: 1px solid #dee2e6;
}

/* Gallery */
.gallery img {
    transition: var(--transition);
}

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

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    * {
        scroll-behavior: smooth;
    }
}

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

/* Utilities */
.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.rounded {
    border-radius: var(--border-radius);
}

.rounded-3 {
    border-radius: 0.75rem;
}

.rounded-circle {
    border-radius: 50%;
}

/* Custom responsive grid for team */
@media (min-width: 992px) {
    .row > .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Spacing utilities */
.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

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

.mb-5 {
    margin-bottom: 3rem;
}

/* Text utilities */
.fw-bold {
    font-weight: 700;
}

.fw-semibold {
    font-weight: 600;
}

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

/* Display utilities */
.d-flex {
    display: flex;
}

.d-inline-flex {
    display: inline-flex;
}

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

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

.flex-grow-1 {
    flex-grow: 1;
}

.h-100 {
    height: 100%;
}

/* Border utilities */
.border-primary {
    border-color: var(--primary-color);
}

.border-success {
    border-color: var(--success-color);
}

.border-warning {
    border-color: var(--accent-color);
}

.border-info {
    border-color: #0dcaf0;
}

.border-secondary {
    border-color: var(--secondary-color);
}

/* List utilities */
.list-unstyled {
    padding-left: 0;
    list-style: none;
}

/* Text decoration */
.text-decoration-none {
    text-decoration: none;
} 

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


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