.elementor-1421330 .elementor-element.elementor-element-728692ba{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-1421330 .elementor-element.elementor-element-bbfe46d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1421330 .elementor-element.elementor-element-9d85a08{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-862557e *//* Creative Shelf Team Page - Complete CSS Reset and Rebuild */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #E36336;
    --secondary-color: #333A72;
    --dark-color: #1a1a1a;
    --gray-color: #64748b;
    --light-gray: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #E36336, #ff6b6b);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #475569 100%);
    --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(227, 99, 54, 0.15);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.team-hero {
    position: relative;
    background: var(--gradient-hero);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(227, 99, 54, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(51, 58, 114, 0.3) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(227, 99, 54, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 8rem 0;
    background: white;
}

.secondary-header {
    margin: 4rem 0 3rem 0;
}

.section-title.secondary {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* CEO Spotlight */
.ceo-spotlight {
    margin: 4rem 0 6rem 0;
}

.ceo-card {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    max-width: 1000px;
    margin: 0 auto;
}

.ceo-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-strong);
}

.ceo-card .member-image-container {
    width: 280px;
    height: 350px;
    flex-shrink: 0;
}

.ceo-card .member-image {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-large);
    object-fit: cover;
    object-position: center top;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ceo-card .member-info {
    flex: 1;
    text-align: left;
}

.ceo-card .member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ceo-card .member-role {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ceo-card .member-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

/* Leadership Grid */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.leader-card {
    position: relative;
    background: white;
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.leader-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-strong);
}

.leader-card.principal {
    background: white;
}

.leader-card.creative {
    background: white;
}

.leader-card.chief {
    background: white;
}

/* Other Team Sections */
.senior-team-section,
.design-team-section,
.sales-section,
.operations-section {
    padding: 8rem 0;
}

.senior-team-section {
    background: var(--light-gray);
}

.design-team-section {
    background: white;
}

.sales-section {
    background: var(--light-gray);
}

.operations-section {
    background: white;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: var(--shadow-subtle);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-strong);
}

.team-member.featured {
    background: white;
    border-left: 6px solid var(--primary-color);
}

/* Image Container */
.member-image-container {
    position: relative;
    margin-bottom: 2rem;
    width: 220px;
    height: 280px;
    flex-shrink: 0;
}

.member-image {
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
    object-position: center top;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    display: block;
    background-color: #f8fafc;
}

.member-image:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(227, 99, 54, 0.15);
}

/* Member Badges */
.member-badge {
    display: inline-block;
    margin-left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
    vertical-align: middle;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.member-badge.ceo {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.member-badge.principal {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.member-badge.creative {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.member-badge.senior {
    background: linear-gradient(135deg, #059669, #047857);
}

.member-badge.designer {
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.member-badge.tech {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}

.member-badge.consultant {
    background: linear-gradient(135deg, #7c2d12, #78350f);
}

.member-badge.finance {
    background: linear-gradient(135deg, #166534, #14532d);
}

.member-badge.hr {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
}

.member-badge.procurement {
    background: linear-gradient(135deg, #b45309, #92400e);
}

.member-badge.marketing {
    background: linear-gradient(135deg, #be123c, #9f1239);
}

/* Member Info */
.member-info {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.member-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.member-description {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.member-skills,
.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: auto;
}

.skill-tag,
.specialty-tag {
    background: rgba(227, 99, 54, 0.12);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(227, 99, 54, 0.25);
    transition: all 0.3s ease;
}

.skill-tag:hover,
.specialty-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Join CTA Section */
.join-cta-section {
    position: relative;
    padding: 8rem 0;
    background: var(--gradient-hero);
    overflow: hidden;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(227, 99, 54, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(51, 58, 114, 0.2) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-button.primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(227, 99, 54, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(45deg, rgba(227, 99, 54, 0.1), rgba(51, 58, 114, 0.1));
    border-radius: inherit;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.leader-card:hover .card-glow,
.team-member:hover .card-glow {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ceo-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
        gap: 2rem;
    }

    .ceo-card .member-image-container {
        width: 250px;
        height: 300px;
    }

    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ceo-card {
        padding: 2rem;
        margin: 3rem 0;
    }

    .ceo-card .member-image-container {
        width: 200px;
        height: 250px;
    }

    .member-image-container {
        width: 180px;
        height: 220px;
    }

    .team-member {
        padding: 1.5rem;
        min-height: 420px;
    }

    .member-info h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .leadership-section,
    .senior-team-section,
    .design-team-section,
    .sales-section,
    .operations-section {
        padding: 6rem 0;
    }
}

@media (max-width: 480px) {
    .member-image-container {
        width: 160px;
        height: 200px;
    }

    .join-cta-section {
        padding: 6rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }
}

/* Animation Classes */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading States */
body {
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Hide upload instructions on small screens */
@media (max-width: 768px) {
    #upload-instructions {
        max-width: 250px !important;
        font-size: 10px !important;
    }
}/* End custom CSS */