body{
    margin: 0%;
    padding: 0%;
}
body.d_CU-dark-bg {
    background: #181A20;
    color: #fff;
    min-height: 100vh;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.d_CU-main-layout {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 70vh;
    gap: 0;
}
.d_CU-accent-bar {
    width: 10px;
    min-height: 100%;
    background: linear-gradient(180deg, #8a49d6 0%, #b9b580 100%);
    border-radius: 8px;
    margin-right: 32px;
    box-shadow: none;
}
.d_CU-content-card {
    background: rgba(34, 40, 49, 0.85);
    border-radius: 18px;
    border: 2px solid #8a49d6;
    padding: 40px 32px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    box-shadow: none;
}
.d_CU-title {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 28px;
    background: linear-gradient(90deg, #8a49d6 20%, #b9b580 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.d_CU-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 8px;
    border-radius: 4px;
    background: linear-gradient(180deg, #8a49d6 0%, #b9b580 100%);
}
.d_CU-subtitle {
    color: #fff;
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.d_CU-desc {
    color: #bdbdbd;
    font-size: 1.1rem;
    line-height: 1.7;
}
.d_CU-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
}
.d_CU-img {
    max-width: 420px;
    width: 100%;
    border-radius: 20px;
    margin-top: 0;
    border: 4px solid #8a49d6;
    background: none;
    box-shadow: none;
}
.d_CU-img-no-border {
    border: none !important;
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-width: 80%;
    height: auto;
    z-index: 2;
    transition: max-width 0.3s, right 0.3s;
}
.d_CU-img-row {
    position: relative;
    min-height: 340px;
}
.d_CU-founder-section {
    margin-top: 32px;
    margin-bottom: 32px;
}
.d_CU-founder-title {
    color: #8a49d6;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.2em;
    text-transform: uppercase;
}
.d_CU-founder-divider {
    width: 260px;
    height: 18px;
    background: none;
    position: relative;
}
.d_CU-founder-divider::before {
    content: '';
    display: block;
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 2px;
    background: #8a49d6;
    z-index: 1;
}
.d_CU-founder-divider::after {
    content: '\2022\2022\2022\2022\2022';
    color: #8a49d6;
    font-size: 1.5rem;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -60%);
    background: #181A20;
    padding: 0 16px;
    z-index: 2;
}
.d_CU-founder-card {
    background: #181A20;
    border-radius: 10px;
    border: 1px solid #b9b580;
    box-shadow: 0 2px 16px 0 rgba(155,108,246,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
    min-height: 100%;
}
.d_CU-founder-card:hover {
    box-shadow: 0 8px 32px 0 rgba(155,108,246,0.18);
    transform: translateY(-6px) scale(1.02);
}
.d_CU-founder-img-wrap {
    width: 100%;
    background: #181A20;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #8a49d6;
    min-height: 340px;
}
.d_CU-founder-img-rect {
    width: 100%;
    max-width: 340px;
    height: 340px;
    object-fit: cover;
    background: #181A20;
    border-radius: 0;
    box-shadow: none;
}
.d_CU-founder-info {
    background: #181A20;
}
.d_CU-founder-name {
    color: #8a49d6;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.2em;
}
.d_CU-founder-role {
    color: #8a49d6;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0.5em;
}
@media (max-width: 991.98px) {
    .d_CU-title {
        font-size: 2.2rem;
        padding-left: 18px;
    }
    .d_CU-title::before {
        width: 6px;
    }
    .d_CU-subtitle {
        font-size: 1.3rem;
    }
    .d_CU-content-card {
        padding: 25px 10px;
    }
    .d_CU-img {
        max-width: 320px;
    }
    .d_CU-accent-bar {
        margin-right: 16px;
    }
    .d_CU-img-no-border {
        max-width: 90%;
        right: 0 !important;
        position: static !important;
        transform: none !important;
        margin-top: 32px;
    }
    .d_CU-img-row {
        min-height: unset;
    }
    .d_CU-founder-card {
        min-height: 260px;
        max-width: 270px;
        padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    }
    .d_CU-founder-img {
        max-width: 120px;
        height: 120px;
    }
    .d_CU-founder-img-wrap {
        min-height: 220px;
    }
    .d_CU-founder-img-rect {
        height: 220px;
        max-width: 220px;
    }
    .d_CU-founder-title {
        font-size: 2rem;
    }
    .d_CU-founder-divider {
        width: 180px;
        height: 14px;
    }
}
@media (max-width: 767.98px) {
    .d_CU-main-layout {
        flex-direction: column;
        align-items: stretch;
    }
    .d_CU-accent-bar {
        width: 100%;
        height: 8px;
        min-height: unset;
        margin: 0 0 18px 0;
        border-radius: 8px;
    }
    .d_CU-img-wrap {
        margin-top: 24px;
    }
    .d_CU-founder-section {
        margin-top: 18px;
        margin-bottom: 18px;
    }
    .d_CU-founder-card {
        min-height: unset;
    }
    .d_CU-founder-img-wrap {
        min-height: 140px;
    }
    .d_CU-founder-img-rect {
        height: 140px;
        max-width: 140px;
    }
    .d_CU-founder-title {
        font-size: 1.3rem;
    }
    .d_CU-founder-divider {
        width: 90px;
        height: 10px;
    }
}
@media (max-width: 575.98px) {
    .d_CU-title {
        font-size: 1.5rem;
        padding-left: 12px;
    }
    .d_CU-title::before {
        width: 4px;
    }
    .d_CU-subtitle {
        font-size: 1rem;
    }
    .d_CU-img {
        max-width: 100%;
    }
    .d_CU-content-card {
        padding: 10px 2px;
    }
    .d_CU-img-no-border {
        max-width: 100%;
        margin-top: 24px;
    }
}

/* Contact Section Styles */
.d_CU-contact-section {
    position: relative;
    background: url('https://t4.ftcdn.net/jpg/03/97/34/35/360_F_397343505_Bs7W174UeFYkwNILhLOyD8S8QdgRO4CQ.jpg') center/cover no-repeat;
    border-radius: 32px;
    box-shadow: 0 8px 32px 0 rgba(48, 48, 83, 0.08);
    padding: 40px 32px !important;
    margin-bottom: 48px;
    display: flex;
    align-items: stretch;
    overflow: hidden; /* Ensure overlay stays within rounded corners */
}

.d_CU-contact-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(80, 78, 78, 0.3); /* Lighten effect */
    border-radius: 32px;
    z-index: 0;
}

.d_CU-contact-section > * {
    position: relative;
    z-index: 1; /* Keep actual content above the overlay */
}
.d_CU-contact-info {
    background: transparent;
    color: #8a49d6;
    border-radius: 24px 0 0 24px;
    min-height: 100%;
}
.d_CU-contact-title {
    color: #8a49d6;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5em;
}
.d_CU-contact-desc {
    color: #f2f2fa;
    font-size: 1.1rem;
    margin-bottom: 1.5em;
}
.d_CU-contact-info ul {
    color: #8a49d6;
    font-size: 1rem;
    padding-left: 0;
}
.d_CU-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #202226;
    color: #8a49d6;
    font-size: 1.3rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.d_CU-social-icon:hover {
    background: #8a49d6;
    color: #fff;
}
.d_CU-contact-form {
    background: #202226;
    border-radius: 0 24px 24px 0;
    box-shadow: none;
    min-width: 280px;
    max-width: 420px;
    width: 100%;
}
.d_CU-form-label {
    color: #8a49d6;
    font-weight: 500;
    margin-bottom: 0.3em;
}
.d_CU-form-input {
    border-radius: 12px;
    border: 1.5px solid #d1d1e0;
    background: #fff;
    color: #8a49d6;
    font-size: 1rem;
    padding: 0.75em 1em;
    box-shadow: none;
    transition: border 0.2s;
}
.d_CU-form-input:focus {
    border-color: #8a49d6;
    outline: none;
    box-shadow: 0 0 0 2px #e0e0ff;
    background: #f8f8f8;
}
.d_CU-form-input:disabled {
    background: #e9ecef;
    color: #bdbdbd;
}
.d_CU-btn-send {
    background: linear-gradient(90deg, #8a49d6 0%, #b9b580 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    padding: 0.75em 0;
    box-shadow: 0 2px 8px 0 rgba(80, 80, 180, 0.08);
    border: none;
    transition: background 0.2s, box-shadow 0.2s;
}
.d_CU-btn-send:focus {
    outline: 2px solid #b9b580;
    outline-offset: 2px;
}
.d_CU-btn-send:active {
    background: linear-gradient(90deg, #b9b580 0%, #8a49d6 100%);
    color: #fff;
    box-shadow: 0 2px 8px 0 rgba(80, 80, 180, 0.18);
}
.d_CU-contact-form input:invalid, .d_CU-contact-form textarea:invalid {
    border-color: #e57373;
}
.d_CU-contact-form input:valid, .d_CU-contact-form textarea:valid {
    border-color: #b9b580;
}
@media (max-width: 1200px) {
      .container.d_CU-contact-section{
        width: 90% !important;
    }
    
}
@media (max-width: 991.98px) {
    .d_CU-contact-section {
        flex-direction: column;
        padding: 24px 8px;
    }
    .d_CU-contact-info, .d_CU-contact-form {
        border-radius: 24px 24px 0 0 !important;
        margin-bottom: 16px;
        padding: 1.2em 0.5em;
    }
    .d_CU-contact-form {
        border-radius: 0 0 24px 24px !important;
        padding: 1.2em 0.5em;
    }
}
@media (max-width: 767.98px) {
    .d_CU-contact-section {
        padding: 12px 2px;
    }
    .d_CU-contact-title {
        font-size: 1.3rem;
    }
    .d_CU-contact-form {
        max-width: 100%;
        min-width: unset;
        padding: 1.2em 0.5em;
    }
    .d_CU-contact-info {
        padding: 1.2em 0.5em;
    }
}

@media (max-width: 575.98px) {
    .d_CU-contact-section {
        padding: 6px 0px;
    }
    .d_CU-contact-form, .d_CU-contact-info {
        padding: 0.7em 0.2em;
    }
  
}

.d_CU-contact-section:first-of-type{
    padding-top: 0px !important;
    padding: 30px 15px !important;
}