/* Start custom CSS for html, class: .elementor-element-4bedf55 *//* ABOUT SECTION */

.about-section{
    padding:120px 0;
    background:#080808;
    position:relative;
}

.about-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:80px;
    align-items:center;
}

.section-tag{
    display:inline-block;
    color:#00ff66;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:20px;
}

.about-content h2{
    font-size:58px;
    line-height:1.2;
    color:#fff;
    margin-bottom:25px;
    font-weight:800;
}

.about-intro{
    margin-bottom:25px;
}

.about-content p{
    color:#b8b8b8;
    line-height:1.9;
    font-size:18px;
}

.about-features{
    margin-top:40px;
}

.feature{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.check-icon{
    width:40px;
    height:40px;
    background:#00ff66;
    color:#000;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

.feature span{
    color:#fff;
    font-size:17px;
    font-weight:500;
}

.about-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.btn-primary{
    display:inline-block;
    background:#00ff66;
    color:#000;
    text-decoration:none;
    padding:18px 35px;
    border-radius:12px;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,255,102,.25);
}

.btn-secondary{
    display:inline-block;
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    border-radius:12px;
    transition:.3s;
}

.btn-secondary:hover{
    background:rgba(255,255,255,.05);
}

/* RIGHT SIDE STATS */

.about-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.stat-card{
    background:#111111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px 25px;
    text-align:center;
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-10px);
    border-color:#00ff66;
    box-shadow:0 20px 50px rgba(0,255,102,.15);
}

.featured{
    border:1px solid rgba(0,255,102,.25);
}

.stat-card h3{
    color:#00ff66;
    font-size:48px;
    font-weight:800;
    margin-bottom:10px;
}

.stat-card p{
    color:#c4c4c4;
    font-size:16px;
}

/* RESPONSIVE */

@media(max-width:991px){

.about-grid{
    grid-template-columns:1fr;
    gap:50px;
}

.about-content{
    text-align:center;
}

.about-features{
    max-width:500px;
    margin:40px auto 0;
}

.about-buttons{
    justify-content:center;
}

.about-content h2{
    font-size:42px;
}
}

@media(max-width:768px){

.about-stats{
    grid-template-columns:1fr;
}

.about-content h2{
    font-size:34px;
}

.about-content p{
    font-size:16px;
}

.about-buttons{
    flex-direction:column;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-6b45c9d */.mission-vision-section{
    padding:120px 0;
    background:#0b0b0b;
}

.section-header{
    text-align:center;
    max-width:850px;
    margin:0 auto 80px;
}

.section-header span{
    color:#00ff66;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
}

.section-header h2{
    color:#fff;
    font-size:56px;
    font-weight:800;
    margin:20px 0;
}

.section-header p{
    color:#b8b8b8;
    font-size:18px;
    line-height:1.8;
}

.mission-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.mission-card{
    background:#121212;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:50px;
    transition:.4s ease;
}

.mission-card:hover{
    transform:translateY(-10px);
    border-color:#00ff66;
    box-shadow:0 20px 50px rgba(0,255,102,.15);
}

.card-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:rgba(0,255,102,.08);
    border:1px solid rgba(0,255,102,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:30px;
}

.mission-card h3{
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
}

.mission-card p{
    color:#b8b8b8;
    line-height:1.9;
    font-size:17px;
}

@media(max-width:991px){

.mission-grid{
    grid-template-columns:1fr;
}

.section-header h2{
    font-size:42px;
}
}

@media(max-width:768px){

.section-header h2{
    font-size:32px;
}

.section-header p{
    font-size:16px;
}

.mission-card{
    padding:35px;
}
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e98d4c9 */.core-values-section{
    padding:120px 0;
    background:#080808;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.value-card{
    background:#121212;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:40px;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.value-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#00ff66;
    transform:scaleX(0);
    transition:.4s;
}

.value-card:hover::before{
    transform:scaleX(1);
}

.value-card:hover{
    transform:translateY(-10px);
    border-color:#00ff66;
    box-shadow:0 20px 50px rgba(0,255,102,.15);
}

.value-icon{
    width:80px;
    height:80px;
    border-radius:20px;
    background:rgba(0,255,102,.08);
    border:1px solid rgba(0,255,102,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    margin-bottom:25px;
}

.value-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:15px;
    font-weight:700;
}

.value-card p{
    color:#b8b8b8;
    line-height:1.9;
    font-size:16px;
}

@media(max-width:991px){

.values-grid{
    grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){

.values-grid{
    grid-template-columns:1fr;
}

.value-card{
    padding:35px;
}
}/* End custom CSS */