/*
 Theme Name: Hello Elementor Child
 Template: hello-elementor
 Version: 1.0.0
*/

/**
 * Card Hover Effect - Apply to any container for consistent hover animation
 * Usage: Add 'aspired-card-hover' class to any Elementor container or element
 */
.aspired-card-hover {
    transition: all 0.3s ease !important;
    cursor: default;
}

.aspired-card-hover:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12) !important;
    border-color: #CBD5E0 !important;
}

/**
 * Button Hover Effect - Apply to buttons for lift animation
 * Usage: Add 'aspired-btn-hover' class to any button element
 */
.aspired-btn-hover {
    transition: all 0.2s ease !important;
}

.aspired-btn-hover:hover {
    transform: translateY(-2px) !important;
}

/**
 * Subtle Hover Effect - For lighter hover animations
 * Usage: Add 'aspired-subtle-hover' class for gentle hover effects
 */
.aspired-subtle-hover {
    transition: all 0.3s ease !important;
}

.aspired-subtle-hover:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1) !important;
}

/**
 * Skill Tag Hover Effect - For small tags and badges
 * Usage: Add 'aspired-tag-hover' class to tags, badges, or small elements
 */
.aspired-tag-hover {
    transition: all 0.3s ease !important;
}

.aspired-tag-hover:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15) !important;
}

/**
 * Recruitment Services Accordion - Structure and Layout Only
 * Matches image.png design with default typography and colors
 * Usage: Use the HTML structure from recruitment-accordion-section.html
 */
.recruitment-services-accordion {
    width: 100%;
    max-width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.accordion-number {
    min-width: 32px;
    font-size: 30px;
    color: #2fc178;
    flex-shrink: 0;
    margin: 4px 10px 0px 0px;
}

#content > div > div > div.elementor-element.elementor-element-6028e5b.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded > div > div.elementor-element.elementor-element-63b215a.e-con-full.e-flex.e-con.e-child > div > section > div:nth-child(1) > div > div{
    margin-left:3px;
}

.accordion-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-title {
    font-weight: inherit;
    margin-bottom: 0;
    transition: margin-bottom 0.3s ease;
}

.accordion-item.open .accordion-title {
    margin-bottom: 12px;
}

.accordion-content {
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
    opacity: 1;
}

.accordion-content p {
    margin: 0;
}

.accordion-icon {
    min-width: 16px;
    text-align: center;
    flex-shrink: 0;
    margin-left: auto;
    transition: transform 0.3s ease;
}

.accordion-icon::before {
    content: '>';
}

.accordion-item.open .accordion-icon::before {
    content: '−';
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .accordion-item {
        padding: 16px 0;
    }

    .accordion-header {
        gap: 8px;
    }

    .accordion-number {
        min-width: 28px;
    }
}

@media (max-width: 480px) {
    .accordion-item {
        padding: 14px 0;
    }

    .accordion-header {
        gap: 6px;
    }

    .accordion-number {
        min-width: 24px;
    }
}
.aspired-tag-hover {
    transition: all 0.2s ease !important;
}

.aspired-tag-hover:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08) !important;
    background-color: #EDF2F7 !important;
}

/**
 * Strong Hover Effect - For hero cards and featured content
 * Usage: Add 'aspired-strong-hover' class for prominent hover effects
 */
.aspired-strong-hover {
    transition: all 0.3s ease !important;
}

.aspired-strong-hover:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15) !important;
    border-color: #2fc178 !important;
}

/**
 * Testimonial Slider Component - Dark Theme
 * Usage: Use testimonial-slider-snippet.html in Elementor HTML widget
 */
.testimonial-slider-section {
    background: #2D3748;
    padding: 80px 0;
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

/* Header Section */
.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    color:white;
}

.testimonial-title {
    line-height: 1.2;
    color: inherit;
    letter-spacing: -0.02em;
    margin: 0;
}

.testimonial-navigation {
    display: flex;
    gap: 16px;
    align-items: center;
}

.testimonial-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    backdrop-filter: blur(10px);
}

.testimonial-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Slider Container */
.testimonial-slider-container {
    position: relative;
    width: 100%;
    overflow: visible;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonial-slider-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y pinch-zoom;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    touch-action: pan-y pinch-zoom;
}

/* Testimonial Slides */
.testimonial-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    padding-right: 200px;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-image {
    flex: 0 0 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

/* Placeholder for testimonial images */
.testimonial-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2fc178, #388E3C);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
}

.testimonial-content {
    flex: 1;
    max-width: 700px;
}

.testimonial-quote {
    line-height: 1.4;
    color: white;
    margin-bottom: 40px;
    letter-spacing: -0.01em;
}

.testimonial-author {
    margin-bottom: 20px;
}

.author-name {
    color: #2fc178;
    margin-bottom: 8px;
}

.author-title {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.testimonial-context {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 600px;
}

/* Pagination Dots */
.testimonial-pagination {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    align-items: center;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: #2fc178;
    transform: scale(1.2);
}

/* Right overflow fade effect */
.testimonial-slider-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(to right, transparent, #2D3748);
    pointer-events: none;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-slide {
        gap: 40px;
        padding-right: 60px;
    }

    .testimonial-image {
        flex: 0 0 200px;
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .testimonial-slider-section {
        padding: 60px 0;
        min-height: auto;
        touch-action: manipulation;
    }

    .testimonial-header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
        text-align: center;
        padding: 0 20px;
    }

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

    .testimonial-slide {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding-right: 0;
        padding-left: 0;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }

    .testimonial-image {
        flex: 0 0 160px;
        width: 160px;
        height: 160px;
        margin: 0 auto;
    }

    .testimonial-content {
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-quote {
        margin-bottom: 24px;
        font-size: 1.125rem;
    }

    .testimonial-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .testimonial-slider-container {
        padding: 0 20px;
    }

    .testimonial-pagination {
        justify-content: center;
        margin-top: 32px;
    }

    /* Hide the fade effect on mobile */
    .testimonial-slider-section::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonial-slider-section {
        padding: 40px 0;
        touch-action: manipulation;
    }

    .testimonial-header,
    .testimonial-slider-container {
        padding: 0 16px;
    }

    .testimonial-slider-wrapper,
    .testimonial-slider {
        touch-action: manipulation;
    }

    .testimonial-header {
        gap: 20px;
        margin-bottom: 32px;
    }

    .testimonial-title {
        font-size: 1.75rem;
    }

    .testimonial-slide {
        gap: 20px;
    }

    .testimonial-image {
        flex: 0 0 120px;
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .testimonial-image-placeholder {
        font-size: 2rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .author-name {
        font-size: 0.95rem;
    }

    .author-title {
        font-size: 0.875rem;
    }

    .testimonial-context {
        font-size: 0.875rem;
    }

    .testimonial-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .pagination-dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-pagination {
        gap: 10px;
        margin-top: 28px;
    }
}

/**
 * Promise Section - Stepped Typography Layout
 * Usage: Add 'stepped-line-typography' class to any container
 * Structure: 
 *   .stepped-line-typography
 *     .stepped-line-container
 *       .promise-items
 *         .promise-item (x4 - automatically indents progressively)
 */
.stepped-line-typography {
    position: relative;
}

.stepped-line-container {
    position: relative;
}

.promise-items {
    position: relative;
}

.stepped-line-typography .promise-item {
    margin-bottom: 25px;
    color: #333;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.stepped-line-typography .promise-item:nth-child(1) {
    margin-left: 0px;
}

.stepped-line-typography .promise-item:nth-child(2) {
    margin-left: 20px;
}

.stepped-line-typography .promise-item:nth-child(3) {
    margin-left: 40px;
}

.stepped-line-typography .promise-item:nth-child(4) {
    margin-left: 60px;
}

/* Responsive behavior for stepped typography */
@media (max-width: 768px) {
    .stepped-line-typography .promise-item {
        margin-left: 0 !important;
    }
}

/**
 * Visual Roles Section - Dark theme icon grid
 * Usage: Use visual-roles-section.html in Elementor HTML widget
 */
.visual-roles-section {
    background: linear-gradient(135deg, #1B365D 0%, #2C5282 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.visual-roles-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 40%;
    height: 160%;
    background: linear-gradient(45deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    transform: rotate(-15deg);
    z-index: 0;
}

.visual-content {
    position: relative;
    z-index: 1;
}

.visual-header {
    text-align: center;
    margin-bottom: 40px;
}

.visual-title {
    margin-bottom: 16px;
    color: white;
}

.visual-subtitle {
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.visual-roles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.visual-role-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.visual-role-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.4);
}

.role-icon {
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.visual-role-title {
    margin-bottom: 8px;
}

.visual-role-desc {
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive Design for Visual Roles */
@media (max-width: 768px) {
    .visual-title {
    }

    .visual-roles-section {
        padding: 0px 0;
    }

    .visual-roles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .visual-role-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .visual-roles-grid {
        grid-template-columns: 1fr;
    }

    .visual-role-card {
        padding: 16px;
    }
}

/* Clients Visual Section Styling - Color overrides for visual-roles-section */
section.visual-roles-section.clients-visual-section {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

section.visual-roles-section.clients-visual-section::before {
    display: none !important;
}

section.visual-roles-section.clients-visual-section::after {
    display: none !important;
}

.visual-title.clients-visual-title {
    color: #1B365D !important;
}

.visual-subtitle.clients-visual-subtitle {
    color: #6B7280 !important;
}

div.visual-role-card.clients-visual-card {
    background: linear-gradient(135deg, #1B365D 0%, #2C5282 100%) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px rgba(27, 54, 93, 0.2) !important;
    color: white !important;
}

div.visual-role-card.clients-visual-card:hover {
    box-shadow: 0 12px 40px rgba(27, 54, 93, 0.3) !important;
}

div.visual-role-title.clients-card-title {
    color: #ffffff !important;
}

div.visual-role-desc.clients-card-desc {
    color: rgba(255, 255, 255, 0.9) !important;
}

/**
 * Contact Section - Professional contact form and info
 * Usage: Use contact-section.html in Elementor HTML widget
 */
.contact-section {
    background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFC 100%);
    padding: 100px 0;
    position: relative;
}

/* Vacancy Section - Slightly different background */
.vacancy-section {
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
}

/* CV Section - Blue gradient background */
.cv-section {
    background: linear-gradient(135deg, #EBF8FF 0%, #E6FFFA 100%);
}

/* Header */
.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-badge {
    display: inline-block;
    background: #2fc178;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.contact-title {
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1A202C;
    letter-spacing: -0.025em;
}

.contact-subtitle {
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Content Layout */
.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Single Form Layout (for vacancy and CV forms) */
.contact-content.single-form {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto 80px;
}

/* Form Container */
.contact-form-container {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-form-container:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Form Elements */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    color: #2D3748;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    color: #2D3748;
    background: #FFFFFF;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2fc178;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #A0AEC0;
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* File Upload */
.file-upload-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    border: 2px dashed #CBD5E0;
    border-radius: 12px;
    background: #F7FAFC;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: #2fc178;
    background: rgba(76, 175, 80, 0.05);
}

.file-upload-icon {
    margin-bottom: 12px;
}

.file-upload-text {
    color: #2D3748;
    margin-bottom: 4px;
}

.file-upload-hint {
    color: #718096;
}

/* Custom Form Button - Matches custom_button shortcode style */
.custom-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: none;
    padding: 16px 32px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #2fc178;
    color: white;
    width: 100%;
}

.custom-form-btn:hover {
    background: #388E3C;
}

.custom-form-btn .btn-text {
    color: white;
    margin-right: 8px;
}

.custom-form-btn .btn-arrow-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #00cc00;
    transition: transform 0.3s ease;
}

.custom-form-btn .btn-arrow {
    color: white;
    transition: transform 0.3s ease;
}

.custom-form-btn:hover .btn-arrow {
    transform: rotate(-20deg);
}

/* Contact Info Container */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-info-title {
    color: #1A202C;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    margin-top: 2px;
}

.contact-info-details {
    flex: 1;
}

.contact-info-label {
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-info-link {
    color: #2D3748;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #2fc178;
}

/* Response Time Card */
.response-time-card {
    background: linear-gradient(135deg, #2fc178, #388E3C);
    color: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.response-icon {
}

.response-title {
    margin-bottom: 4px;
}

.response-text {
    opacity: 0.9;
    line-height: 1.4;
}

/* Closing Ethos */
.contact-ethos {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

.ethos-content {
    max-width: 800px;
    margin: 0 auto;
}

.ethos-text {
    color: #4A5568;
    line-height: 1.7;
    font-style: italic;
    position: relative;
}

.ethos-text::before,
.ethos-text::after {
    content: '"';
    color: #2fc178;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 40px;
    }

    .contact-form-container,
    .contact-info-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
    }

    .contact-subtitle {
        }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }

    .contact-content.single-form {
        margin-bottom: 50px;
    }

    .contact-form-container,
    .contact-info-card {
        padding: 24px;
    }

    .file-upload-label {
        padding: 30px 16px;
    }

    .response-time-card {
        padding: 20px;
    }

    .response-icon {
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .contact-title {
    }

    .contact-form-container,
    .contact-info-card {
        padding: 20px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px;
    }

    .form-submit-btn {
        padding: 16px 32px;
    }

    .file-upload-label {
        padding: 24px 16px;
    }

    .response-time-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

/**
 * Enhanced Contact Section Styling - Updated Design with Theme Colors
 * Usage: Use updated_contact_section.html in Elementor HTML widget
 */

/* Enhanced Contact Info Card - Using Green Theme Colors */
.contact-info-card {
    background: linear-gradient(135deg, #2fc178 0%, #388E3C 100%);
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 15px 35px rgba(47, 193, 120, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    z-index: 1;
}

.contact-info-card > * {
    position: relative;
    z-index: 2;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: white;
    text-align: center;
}

.contact-info-grid {
    display: grid;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Icon gradients using theme colors with fallbacks */
.office-icon {
    background: linear-gradient(135deg, #072044, #1A202C);
}

.office-icon i:before {
    content: "🏠" !important;
    font-family: "Segoe UI Emoji", sans-serif !important;
}

.email-icon {
    background: linear-gradient(135deg, #2fc178, #388E3C);
}

.email-icon i:before {
    content: "✉️" !important;
    font-family: "Segoe UI Emoji", sans-serif !important;
}

.phone-icon {
    background: linear-gradient(135deg, #f9bd11, #e6a800);
}

.phone-icon i:before {
    content: "📞" !important;
    font-family: "Segoe UI Emoji", sans-serif !important;
}

.hours-icon {
    background: linear-gradient(135deg, #4A5568, #2D3748);
}

.hours-icon i:before {
    content: "🕐" !important;
    font-family: "Segoe UI Emoji", sans-serif !important;
}

.facebook-icon {
    background: linear-gradient(135deg, #4267b2, #365899);
}

.facebook-icon i:before {
    content: "f" !important;
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
}

.linkedin-icon {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.linkedin-icon i:before {
    content: "in" !important;
    font-family: Arial, sans-serif !important;
    font-weight: bold !important;
    font-size: 0.8em !important;
}

.contact-info-details {
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-info-link,
.contact-info-text {
    color: white;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.contact-info-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

/* Enhanced Contact Ethos Section */
.contact-ethos {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

.ethos-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4A5568;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.ethos-text::before,
.ethos-text::after {
    content: '"';
    font-size: 1.5rem;
    color: #2fc178;
    font-weight: bold;
}

/* Social Media Icons Layout */
.social-icons-container {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-icon-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.social-icon-link.facebook-icon {
    background: linear-gradient(135deg, #4267b2, #365899);
}

.social-icon-link.linkedin-icon {
    background: linear-gradient(135deg, #0077b5, #005885);
}

.social-icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.social-media-row {
    justify-content: center;
}

/* Enhanced responsive design for contact info */
@media (max-width: 768px) {
    .contact-info-grid {
        gap: 15px;
    }

    .contact-info-item {
        padding: 12px;
    }

    .contact-info-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .social-icon-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .contact-info-icon {
        align-self: center;
    }
}

/**
 * Core Sectors Section - Clean cards matching theme style
 */


.sectors-header {
    text-align: center;
    margin-bottom: 60px;
}

.sectors-title {
    line-height: 1.1;
    margin-bottom: 16px;
    color: #1A202C;
    letter-spacing: -0.025em;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sector-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 5px solid #2fc178;
}

.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #CBD5E0;
}

.sector-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.sector-icon {
    margin-right: 16px;
}



.sector-roles {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.role-item {
    display: flex;
    align-items: center;
    color: #4A5568;
    line-height: 1.5;
}

.role-bullet {
    width: 8px;
    height: 8px;
    background: #2fc178;
    border-radius: 50%;
    margin-right: 14px;
    flex-shrink: 0;
    margin-top: 6px;
    box-shadow: 0 1px 3px rgba(76, 175, 80, 0.3);
}

/**
 * Alternative Style 1: Timeline Layout
 */
.style-timeline {
    background: #F7FAFC;
    padding: 100px 0;
}

.style-timeline .sectors-header {
    text-align: center;
    margin-bottom: 80px;
}

.style-timeline .sectors-title {
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1B365D;
}

.style-timeline .sectors-subtitle {
    color: #64748B;
    margin: 0;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E2E8F0;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #2fc178;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.marker-icon {
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.timeline-title {
    color: #1B365D;
    margin-bottom: 20px;
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.role-tag {
    background: #F0F9F0;
    color: #2D5016;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #C6F6D5;
}

/**
 * Alternative Style 2: Icon Grid Layout
 */
.style-icon-grid {
    background: white;
    padding: 100px 0;
}

.style-icon-grid .sectors-header {
    text-align: center;
    margin-bottom: 80px;
}

.style-icon-grid .sectors-title {
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1B365D;
}

.style-icon-grid .sectors-subtitle {
    color: #64748B;
    margin: 0;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-item {
    text-align: center;
    padding: 40px 30px;
    background: #F8FAFC;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.sector-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    background: white;
}

.sector-icon-large {
    margin-bottom: 24px;
    display: block;
}

.sector-name {
    color: #1B365D;
    margin-bottom: 16px;
}

.sector-description {
    color: #64748B;
    margin-bottom: 24px;
    line-height: 1.6;
}

.role-list-simple {
    list-style: none;
    padding: 0;
    margin: 0;
}

.role-list-simple li {
    padding: 8px 0;
    color: #4A5568;
    position: relative;
    padding-left: 20px;
}

.role-list-simple li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2fc178;
}

/**
 * Alternative Style 3: Horizontal Cards
 */

.style-horizontal .sectors-header {
    text-align: center;
    margin-bottom: 60px;
}

.style-horizontal .sectors-title {
    line-height: 1.2;
    color: #1B365D;
}

.horizontal-sectors {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    row-gap: 40px;
    column-gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.horizontal-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: auto;
    margin: 0;
    position: relative;
}

.horizontal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    z-index: 10;
}

.card-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.card-icon {
    flex-shrink: 0;
}

.card-info {
    flex: 1;
}

.card-title {
    color: #1B365D;
    margin-bottom: 6px;
    line-height: 1.3;
}

.card-subtitle {
    color: #64748B;
    margin: 0;
}

.card-right {
    width: 100%;
}

.role-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.role-item {
    color: #4A5568;
    font-size: 14px;
    line-height: 1.4;
    padding: 4px 0 0 35px;
    transition: color 0.2s ease;
}



/**
 * Expanding Into New Sectors Section - Simple
 */
.expanding-new-sectors-simple {
    padding: 100px 0;
}

.simple-header {
    text-align: center;
    margin-bottom: 50px;
}

.simple-title {
    line-height: 1.2;
    margin-bottom: 16px;
    color: #1B365D;
}

.simple-subtitle {
    line-height: 1.6;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.simple-sectors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.simple-sector-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 12px 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.simple-sector-item:hover {
    border-color: #2fc178;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
}

.simple-icon {
    flex-shrink: 0;
}

.simple-text {
    color: #2D3748;
    white-space: nowrap;
}

.simple-closing {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.closing-paragraph {
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/**
 * Why Our Sector Knowledge Matters Section
 */
.sector-knowledge-benefits {
    padding: 100px 0;
}

.benefits-hero {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-main-title {
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1B365D;
}

.benefits-intro {
    line-height: 1.6;
    color: #64748B;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.benefit-feature-card {
    background: #FAFAFA;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    background: white;
    border-color: #2fc178;
}

.feature-icon {
    flex-shrink: 0;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2fc178, #66BB6A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.feature-content {
    flex: 1;
}

.feature-title {
    margin-bottom: 12px;
    color: #1B365D;
}

.feature-description {
    line-height: 1.6;
    color: #4A5568;
    margin: 0;
}

.benefits-conclusion {
    max-width: 700px;
    margin: 0 auto;
}

.conclusion-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border-left: 4px solid #2fc178;
}

.conclusion-text {
    line-height: 1.6;
    color: #2D3748;
    margin: 0;
}

/**
 * Expanding Sectors Section - Simple two-column layout
 */
.expanding-sectors-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.expanding-header {
    text-align: center;
    margin-bottom: 60px;
}

.expanding-title {
    line-height: 1.1;
    margin-bottom: 16px;
    color: #1A202C;
    letter-spacing: -0.025em;
}

.expanding-subtitle {
    color: #4A5568;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.expanding-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.expanding-sectors {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sector-tag {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 12px 24px;
    color: #2D3748;
    transition: all 0.3s ease;
}

.sector-tag:hover {
    background: #2fc178;
    color: white;
    border-color: #2fc178;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.expanding-description {
    display: flex;
    justify-content: center;
}

.description-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.description-icon {
    margin-top: 4px;
}

.description-title {
    color: #1A202C;
    margin-bottom: 12px;
}

.description-text {
    color: #4A5568;
    line-height: 1.6;
}

/**
 * Sector Knowledge Section
 */
.sector-knowledge-section {
    background: #F7FAFC;
    padding: 100px 0;
}

.knowledge-header {
    text-align: center;
    margin-bottom: 60px;
}


.knowledge-title {
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1B365D;
}

.knowledge-intro {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    color: #64748B;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}


.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #2fc178;
}


.benefit-icon {
    display: block;
    margin-bottom: 20px;
}

.benefit-title {
    margin-bottom: 15px;
    color: #1B365D;
}

.benefit-text {
    line-height: 1.6;
    color: #64748B;
}


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

.closing-content {
    background: #1B365D;
    color: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto;
}

.closing-text {
    line-height: 1.6;
    margin: 0;
}

.closing-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

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

.closing-stat .stat-number {
    color: #2fc178;
    display: block;
    margin-bottom: 8px;
}

.closing-stat .stat-label {
    opacity: 0.8;
}

/* Responsive Design for New Sectors Sections */
@media (max-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .expanding-content {
        gap: 60px;
    }

    .benefits-grid {
        gap: 32px;
    }

    .hero-title {
        }

    .expanding-title,
    .knowledge-title {
    }
}

@media (max-width: 768px) {
    .core-sectors-hero {
        padding: 80px 0 60px;
    }

    .core-sectors-section {
        padding: 60px 0;
        margin-top: -20px;
    }

    .expanding-sectors-section,
    .sector-knowledge-section {
        padding: 80px 0;
    }

    .hero-title {
    }

    .hero-subtitle {
        }

    .expanding-title,
    .knowledge-title {
    }

    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sector-card {
        padding: 32px;
    }

    .expanding-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .expanding-sectors {
        max-width: 500px;
        margin: 0 auto;
    }

    .values-card {
        padding: 40px;
    }

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

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .benefit-card {
        padding: 32px;
    }

    .closing-card {
        padding: 48px;
    }

    .closing-stats {
        gap: 40px;
    }
    
    .horizontal-sectors {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .two-column-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .simple-sectors {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .core-sectors-hero {
        padding: 60px 0 40px;
    }

    .core-sectors-section {
        padding: 40px 0;
    }

    .expanding-sectors-section,
    .sector-knowledge-section {
        padding: 60px 0;
    }

    .hero-title {
    }

    .hero-subtitle {
        }

    .expanding-title,
    .knowledge-title {
    }

    .sector-card {
        padding: 24px;
    }

    .sector-icon {
    }

    .values-card {
        padding: 32px;
    }

    .values-stats {
        flex-direction: column;
        gap: 20px;
    }

    .benefit-card {
        padding: 24px;
    }

    .benefit-icon {
    }

    .closing-card {
        padding: 32px;
    }

    .closing-stats {
        flex-direction: column;
        gap: 24px;
    }

    .closing-title {
    }

    .closing-text {
        }

    /* Responsive styles for new alternative layouts */
    .style-timeline {
        padding: 60px 0;
    }

    .style-icon-grid {
        padding: 60px 0;
    }

    .style-horizontal {
        padding: 60px 0;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .timeline-content {
        padding: 20px;
    }

    .timeline-title {
        }

    .role-tags {
        gap: 6px;
    }

    .role-tag {
        padding: 4px 8px;
    }

    .icon-grid {
        gap: 24px;
    }

    .sector-item {
        padding: 24px 20px;
    }

    .sector-icon-large {
            margin-bottom: 16px;
    }

    .sector-name {
        }

    .horizontal-sectors {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .horizontal-card {
        gap: 16px;
    }

    .card-left {
        gap: 12px;
    }

    .card-icon {
    }

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

    .role-badge {
        padding: 6px 12px;
    }
    
    .two-column-sectors-section {
        padding: 60px 0;
    }
    
    .two-column-content {
        gap: 40px;
    }
    
    .left-column,
    .right-column {
        gap: 24px;
    }
    
    .sector-list,
    .knowledge-list {
        gap: 14px;
    }
    
    .expanding-new-sectors-simple,
    .sector-knowledge-benefits {
        padding: 60px 0;
    }
    
    .simple-sectors {
        gap: 12px;
    }
    
    .simple-sector-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .simple-text {
        white-space: normal;
        text-align: center;
    }
    
    .closing-paragraph {
        padding: 20px;
    }
    
    .benefits-grid {
        gap: 20px;
    }
    
    .benefit-feature-card {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .cta-card,
    .conclusion-card {
        padding: 24px;
    }
}

/**
 * Meet the Team Section - Professional team member display
 * Usage: Use meet-the-team-section.html in Elementor HTML widget
 * Note: Background is transparent for Elementor control
 */
.team-section {
    background: transparent;
    padding: 80px 0;
    position: relative;
}

.team-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.team-subtitle {
    font-size: 1.25rem;
    color: #4A5568;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

/* Team Member Cards */
.team-member-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.team-member-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #CBD5E0;
}

/* Team Member Image */
.team-member-image {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.team-member-image img{
    border-radius: 50%;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    box-shadow: none;
}

/* Team Member Content */
.team-member-content {
    text-align: center;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2fc178;
    margin-bottom: 8px;
    line-height: 1.3;
}

.member-title {
    font-size: 1rem;
    font-weight: 500;
    color: #4A5568;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1A202C;
    text-align: left;
}

/* Social Media Links */
.member-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0077b5 !important;
    border-radius: 50%;
    color: white !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: none;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 119, 181, 0.2);
}

.social-link:hover {
    background: #005885 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 119, 181, 0.3);
    text-decoration: none !important;
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .team-title {
        font-size: 2rem;
    }

    .team-subtitle {
        font-size: 1.125rem;
    }

    .team-member-card {
        padding: 24px;
    }

    .member-photo {
        width: 120px;
        height: 120px;
        border: none;
        box-shadow: none;
    }

    .member-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .team-section .container {
        padding: 0 16px;
    }

    .team-header {
        margin-bottom: 40px;
    }

    .team-title {
        font-size: 1.75rem;
    }

    .team-member-card {
        padding: 20px;
    }

    .member-photo {
        width: 100px;
        height: 100px;
        border: none;
        box-shadow: none;
    }

    .member-name {
        font-size: 1.125rem;
    }

    .member-bio {
        font-size: 0.9rem;
    }
}

/* Animation for cards reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.team-member-card {
    animation: fadeInUp 0.6s ease-out;
}

.team-member-card:nth-child(2) {
    animation-delay: 0.1s;
}

/**
 * Footer Contact Section - Mobile Responsive Override
 * Ensures "Get in Touch" section is properly centered on mobile
 * Excludes Elementor editor to prevent interference with editing
 */
@media (max-width: 768px) {
    body:not(.elementor-editor-active) .aspired-careers-footer .footer-contact-info .contact-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    body:not(.elementor-editor-active) .aspired-careers-footer .contact-details {
        text-align: center !important;
    }

    body:not(.elementor-editor-active) .aspired-careers-footer .contact-icon {
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    body:not(.elementor-editor-active) .aspired-careers-footer .footer-contact-info .contact-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    body:not(.elementor-editor-active) .aspired-careers-footer .contact-details {
        text-align: center !important;
    }
}

/**
 * Graphic Lines Fade-In Effect
 * Lines start transparent and fade in to #2FC178 after positioning
 */
#graphic-1, #graphic-4 {
    border-color: transparent !important;
    transition: border-color 0.6s ease-in-out;
}

#graphic-1.graphic-line-visible, #graphic-4.graphic-line-visible {
    border-color: #2FC178 !important;
}

