:root {
    --primary-color: #050F26;
    --accent-color: #D25C25;
}

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

.text-yel {
    color: var(--accent-color);
}

.text-hover-yel:hover {
    color: var(--accent-color) !important;
}

.text-hover-primary:hover {
    color: var(--primary-color) !important;
}

.bg-hover-yel:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white !important;
}

.btn-orange {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white;
}

.btn-orange:hover {
    background-color: #e66f3c !important;
}

.text-sub-primary {
    color: #050F26;
}

.bg-sub-primary {
    background-color: #050F26;
}



.process-section {
    padding: 4rem 0;
    position: relative;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-bottom: 2rem;
}

.process-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.process-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1;
    position: relative;
}

.team-member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.process-circle {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 4px solid #FF5C01;
    border-right-color: transparent;
    transform: rotate(45deg);
    z-index: 0;
}

.process-circle::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: 22px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #FF5C01;
    transform: rotate(-45deg);
}

.process-number {
    position: absolute;
    bottom: 0;
    left: 0px;
    width: 50px;
    height: 50px;
    background-color: #FF5C01;
    color: white;
    border: 4px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 2;
}

.process-arrow {
    position: absolute;
    bottom: 20px;
    right: -30px;
    color: var(--accent-color);
    font-size: 2rem;
    z-index: 2;
}

.process-description {
    text-align: center;
    color: #666;
    max-width: 300px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .process-arrow {
        bottom: -20px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }

    .process-item:last-child .process-arrow {
        display: none;
    }
}

.team-member,
.member-card {
    transition: all 0.3s ease;
}

.member-card:hover {
    /* transform: translateY(-10px); */
    background-color: var(--accent-color) !important;
}

.member-card:hover .social-icons {
    display: block !important;
}

.member-card:hover .member-title {
    display: none !important;
}

.member-card:hover .member-name {
    color: white !important;
}

.highlight {
    background-color: var(--accent-color);
    color: white;
}

.highlight .social-icons a {
    color: white !important;
}

@media (min-width: 1200px) {

    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1040px;
    }
}

.bg-primary-dark {
    background-color: #1e273c !important;
}

.bg-primary-light {
    background-color: #050F26 !important;
}

#toast-container {
    display: block;
    z-index: 999999999999999999999;
}

html body .bg-primary {
    background-color: var(--primary-color) !important;
}