/* Start custom CSS for text-editor, class: .elementor-element-b00441d *//* =========================
   ABOUT HIGHLIGHTS
========================= */

.about-highlights-section{
    padding:120px 0;
    background:#fff;
}

.section-heading{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.section-badge{
    display:inline-block;
    padding:12px 22px;
    border-radius:100px;
    background:#f3f0ff;
    color:#6c4cff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.section-heading h2 span{
    background:linear-gradient(
        90deg,
        #7b61ff,
        #ff4fd8
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-heading p{
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/* GRID */

.about-highlight{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.highlight-card{
    position:relative;
    background:#fff;
    padding:40px 30px;
    border-radius:30px;
    border:1px solid #ececec;

    transition:.5s cubic-bezier(.22,1,.36,1);

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);
}

/* TOP BORDER */

.highlight-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        #7b61ff,
        #ff4fd8
    );

    transform:scaleX(0);
    transition:.5s;
}

.highlight-card:hover::before{
    transform:scaleX(1);
}

/* HOVER */

.highlight-card:hover{
    transform:
    translateY(-15px);

    box-shadow:
    0 30px 60px rgba(123,97,255,.12);
}

/* ICON */

.icon{
    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:#f5f2ff;

    font-size:30px;

    margin-bottom:25px;

    transition:.4s;
}

.highlight-card:hover .icon{
    transform:
    rotate(10deg)
    scale(1.1);
}

/* TITLE */

.highlight-card h3{
    font-size:24px;
    color:#111;
    margin-bottom:15px;
    transition:.3s;
}

.highlight-card:hover h3{
    color:#7b61ff;
}

/* TEXT */

.highlight-card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

/* RESPONSIVE */

@media(max-width:1200px){

.about-highlight{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.about-highlight{
    grid-template-columns:1fr;
}

.section-heading h2{
    font-size:40px;
}

}
.section-heading h2{
    font-size:clamp(42px,5vw,72px);
    line-height:1.05;
    font-weight:900;
    margin-bottom:25px;
    letter-spacing:-3px;

    background:linear-gradient(
        135deg,
        #5b21b6 0%,
        #7c3aed 30%,
        #a855f7 60%,
        #ec4899 100%
    );

    background-size:300% 300%;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:gradientMove 6s ease infinite;
}

@keyframes gradientMove{
    0%{
        background-position:0% 50%;
    }
    50%{
        background-position:100% 50%;
    }
    100%{
        background-position:0% 50%;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-ab46f19 *//* =========================
   LEADERSHIP SECTION
========================= */

.leadership-section{
    position:relative;
    padding:120px 0;
    background:
    radial-gradient(circle at top center,
    rgba(123,97,255,.08),
    transparent 40%),
    #fff;
    overflow:hidden;
}

/* =========================
   HEADER
========================= */

.leadership-header{
    max-width:900px;
    margin:0 auto 80px;
    text-align:center;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 24px;
    border-radius:100px;
    background:#f5f2ff;
    color:#7b61ff;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.leadership-header h2{
    font-size:clamp(42px,5vw,78px);
    line-height:1.05;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
    letter-spacing:-2px;
}

.leadership-header h2 span{
    background:linear-gradient(
        90deg,
        #7b61ff,
        #ff4fd8
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.leadership-header p{
    max-width:800px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.9;
}

/* =========================
   GRID
========================= */

.leader-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* =========================
   CARD
========================= */

.leader-card{
    position:relative;
    background:#fff;
    padding:40px;
    border-radius:32px;
    overflow:hidden;

    border:1px solid #ececec;

    transition:.6s cubic-bezier(.22,1,.36,1);

    box-shadow:
    0 15px 35px rgba(0,0,0,.04);
}

/* CEO CARD */

.leader-card.featured{
    transform:scale(1.03);
    border:2px solid rgba(123,97,255,.15);
}

/* Hover */

.leader-card:hover{
    transform:
    translateY(-15px);

    box-shadow:
    0 30px 70px rgba(123,97,255,.15);
}

.leader-card.featured:hover{
    transform:
    scale(1.03)
    translateY(-15px);
}

/* Animated Border */

.leader-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;

    background:
    linear-gradient(
        90deg,
        #7b61ff,
        #ff4fd8
    );

    transform:scaleX(0);
    transition:.5s ease;
}

.leader-card:hover::before{
    transform:scaleX(1);
}

/* Glow */

.leader-card::after{
    content:"";

    position:absolute;

    width:300px;
    height:300px;

    top:-150px;
    right:-150px;

    background:
    radial-gradient(
        rgba(123,97,255,.15),
        transparent 70%
    );

    opacity:0;

    transition:.6s;
}

.leader-card:hover::after{
    opacity:1;
}

/* =========================
   TOP ROW
========================= */

.leader-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
}

.leader-role{
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:100px;
    background:#f5f2ff;
    color:#7b61ff;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
}

.leader-exp{
    color:#ff4fd8;
    font-weight:700;
    font-size:14px;
}

/* =========================
   NAME
========================= */

.leader-card h3{
    font-size:34px;
    line-height:1.2;
    color:#111;
    margin-bottom:15px;
    transition:.4s;
}

.leader-card:hover h3{
    color:#7b61ff;
}

/* =========================
   DESCRIPTION
========================= */

.leader-desc{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    font-size:15px;
}

/* =========================
   LIST
========================= */

.leader-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.leader-card ul li{
    position:relative;
    padding-left:28px;
    margin-bottom:15px;
    color:#555;
    line-height:1.7;
    transition:.3s;
}

.leader-card ul li::before{
    content:"✦";
    position:absolute;
    left:0;
    color:#7b61ff;
    font-size:14px;
}

.leader-card:hover ul li{
    transform:translateX(6px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

.leader-grid{
    grid-template-columns:1fr;
}

.leader-card.featured{
    transform:none;
}

}

@media(max-width:768px){

.leadership-section{
    padding:80px 20px;
}

.leadership-header h2{
    font-size:40px;
}

.leadership-header p{
    font-size:16px;
}

.leader-card{
    padding:30px;
}

.leader-card h3{
    font-size:28px;
}

.leader-top{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
}

}/* End custom CSS */