:root {
    --primary: #8B4513;        /* Saddle Brown */
    --secondary: #D2B48C;      /* Tan/Light Brown */
    --accent: #A0522D;         /* Sienna */
    --light: #F5F5DC;          /* Beige/Cream */
    --dark: #654321;           /* Dark Brown */
    --white: #FFFFFF;
    --black: #2C2C2C;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    --gradient-light: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    --gradient-hero: linear-gradient(135deg, 
        rgba(139, 69, 19, 0.9) 0%, 
        rgba(101, 67, 33, 0.85) 50%,
        rgba(160, 82, 45, 0.8) 100%);
    --shadow-sm: 0 4px 20px rgba(101, 67, 33, 0.3);
    --shadow-md: 0 10px 30px rgba(139, 69, 19, 0.1);
    --shadow-lg: 0 20px 50px rgba(139, 69, 19, 0.2);
    --border-radius: 20px;
    --border-radius-sm: 15px;
    --border-radius-lg: 25px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--gradient-light);
    color: var(--black);
    line-height: 1.7;
    min-height: 100vh;
}

/* ===== COMMON COMPONENTS ===== */
.navbar {
    background: var(--gradient-dark);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--white) !important;
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand img {
    transition: all 0.3s ease;
    max-height: 50px;
    width: auto;
    border-radius: var(--border-radius-sm);
    padding: 4px;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-brand img:hover {
    transform: scale(1.1) rotate(2deg);
    background: rgba(255, 255, 255, 0.2);
}

.navbar-nav .nav-link {
    color: var(--secondary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin: 0 2px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* ===== TYPOGRAPHY ===== */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    font-weight: 800;
    color: var(--dark);
    text-align: center;
    font-size: 2.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title::before {
    content: '✦';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 1.5rem;
}

/* ===== CARDS ===== */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    margin-bottom: 25px;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--dark) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.4);
}

.btn-outline-primary {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
    padding: 12px 30px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.btn-light {
    background: var(--light);
    color: var(--dark);
    border: 2px solid var(--secondary);
    padding: 14px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
}

.btn-light:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(210, 180, 140, 0.3);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-hero), 
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 140px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FOOTER ===== */
footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
}

.footer-logo {
    height: 40px;
    margin-bottom: 20px;
    border-radius: var(--border-radius-sm);
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    margin-right: 12px;
    color: var(--white);
    transition: all 0.4s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== EMPLOYEE PORTAL ===== */
.employee-portal {
    background: var(--gradient-light);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    margin: 40px 0;
    border: 2px solid var(--secondary);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
    position: relative;
    overflow: hidden;
}

.employee-portal::before {
    content: '🔒 SECURE AREA';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.dashboard-card {
    border-left: 5px solid var(--primary);
    background: var(--white);
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-card {
    border-top: 5px solid var(--accent);
    background: var(--white);
}

/* ===== LOGIN PAGES ===== */
.login-page {
    background: linear-gradient(135deg, var(--light) 0%, #f0e6d2 50%, var(--light) 100%);
    min-height: 100vh;
    position: relative;
}

.login-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b4513' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.login-header {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.login-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.login-container {
    max-width: 450px;
    margin: 80px auto;
    padding: 50px 40px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 60px rgba(139, 69, 19, 0.15);
    border: 2px solid var(--secondary);
    position: relative;
    overflow: hidden;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.login-brand {
    border-radius: var(--border-radius-sm);
    padding: 10px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

/* ===== COMMON UI COMPONENTS ===== */
.tab-content {
    padding: 30px 25px;
    border: 2px solid var(--secondary);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    background: var(--gradient-light);
}

.nav-tabs {
    border-bottom: 2px solid var(--secondary);
}

.nav-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    transform: translateY(-2px);
    box-shadow: 0 -5px 15px rgba(139, 69, 19, 0.2);
}

.nav-tabs .nav-link {
    color: var(--primary);
    font-weight: 600;
    background: var(--light);
    border: 2px solid var(--secondary);
    border-bottom: none;
    margin-right: 8px;
    border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    transition: all 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background: var(--secondary);
    color: var(--dark);
}

/* ===== BADGES & TAGS ===== */
.certificate-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    color: var(--dark);
    padding: 8px 18px;
    border-radius: 25px;
    margin: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.certificate-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.2);
}

.access-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(139, 69, 19, 0.3);
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--danger) 0%, #c0392b 100%);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ===== PROGRESS BARS ===== */
.progress {
    height: 12px;
    margin-bottom: 15px;
    background-color: var(--light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.progress-bar {
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== AVATARS ===== */
.user-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* ===== SERVICE COMPONENTS ===== */
.service-category {
    margin-bottom: 60px;
    position: relative;
}

.service-item {
    padding: 25px;
    border-left: 4px solid var(--primary);
    background: var(--gradient-light);
    margin-bottom: 25px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.service-item:hover {
    border-left-width: 6px;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.15);
}

.project-details {
    background: var(--gradient-light);
    padding: 25px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 25px;
    border: 2px solid var(--secondary);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.1);
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* ===== CONTINUE BROWSING ===== */
.continue-browsing {
    background: var(--gradient-light);
    border: 3px solid var(--secondary);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.continue-browsing::before {
    content: '🌐';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    opacity: 0.1;
}

.continue-browsing h4 {
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.continue-browsing p {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    color: var(--white);
    padding: 25px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-consent-text {
    flex: 1;
}

.cookie-consent-text h4 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 700;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* ===== LOADING & TOASTS ===== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}

.toast {
    background: var(--white);
    border: none;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 5px solid var(--primary);
    margin-bottom: 15px;
}

.toast-header {
    background: transparent;
    border: none;
    padding: 15px 20px 5px;
}

.toast-body {
    padding: 10px 20px 20px;
    color: var(--black);
}

/* ===== RESPONSIVE & UTILITY ===== */
@media (prefers-color-scheme: dark) {
    .navbar-brand img {
        filter: brightness(0.9);
    }
}

@media print {
    .navbar, .cookie-consent, .btn {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
}

/* Add these styles to your CSS file */

/* Founders Section Styles */
.founder-card {
    border: 2px solid var(--secondary);
    transition: all 0.4s ease;
}

.founder-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
}

.founder-avatar .user-avatar {
    background: var(--gradient-primary);
    border: 3px solid var(--secondary);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

/* Team Section Styles */
.team-card {
    border: 1px solid rgba(139, 69, 19, 0.2);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    border-color: var(--primary);
}

.team-avatar .user-avatar {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    border: 2px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

/* Text colors for consistency */
.text-accent {
    color: var(--accent) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .founder-card, .team-card {
        margin-bottom: 20px;
    }
    
    .founder-avatar .user-avatar,
    .team-avatar .user-avatar {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.2rem !important;
    }
}

/* Team Section Styles */
.team-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.05);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.5);
}

.carousel-indicators button.active {
    background-color: #0d6efd;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #teamGrid {
        display: none !important;
    }
}

@media (min-width: 992px) {
    #teamCarousel {
        display: none;
    }
}