.elementor-7 .elementor-element.elementor-element-5662f57{--display:flex;}/* Start custom CSS for html, class: .elementor-element-ce5a23d *//*=============================
    BRAND COLORS
=============================*/
:root{
    --primary:#0B3D6D;
    --primary-dark:#0B6E4F;
    --primary-light:#0B3D6D;
    --primary-bg:#0B6E4F;
}

/*=============================
    SECTION
=============================*/
.gas-feature-section{
    padding:10px 60px;
    background:
        radial-gradient(circle at top left,#f1ecff,transparent 40%),
        radial-gradient(circle at bottom right,#0B6E4F,transparent 40%),
        linear-gradient(135deg,#ffffff,#faf8ff);
    overflow:hidden;
}

.gas-feature-wrapper{
    max-width:1600px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
}

.gas-content{
    flex:1;
}

.gas-card-area{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/*=============================
    BADGE
=============================*/
.gas-badge{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    color:var(--primary);
    border:1px solid rgba(132,105,233,.15);
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    box-shadow:0 10px 25px rgba(132,105,233,.12);
    margin-bottom:25px;
}

/*=============================
    HEADING
=============================*/
.gas-content h2{
    font-size:52px;
    color:#000;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.gas-content h2 span{
    color:var(--primary);
}

/*=============================
    PARAGRAPH
=============================*/
.gas-content p{
    font-size:17px;
    color:#000;
    line-height:1.8;
    text-align:justify;
    margin-bottom:20px;
}

/*=============================
    BUTTON
=============================*/
.gas-btn{
    display:inline-block;
    margin-top:15px;
    padding:15px 38px;
    background:var(--primary);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.35s ease;
    box-shadow:0 12px 30px rgba(132,105,233,.25);
}

.gas-btn:hover{
    background:var(--primary-dark);
    transform:translateY(-5px);
    color:#fff;
}

/*=============================
    CARDS
=============================*/
.gas-card{
    background:#fff;
    padding:30px;
    border-radius:20px;
    border:1px solid rgba(132,105,233,.08);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s ease;
}

.gas-card:hover{
    transform:translateY(-8px);
    border-color:var(--primary);
    box-shadow:0 20px 45px rgba(132,105,233,.20);
}

.gas-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:20px;
    box-shadow:0 10px 25px rgba(132,105,233,.25);
}

.gas-card h3{
    font-size:24px;
    color:#000;
    margin-bottom:15px;
}

.gas-card p{
    color:#000;
    line-height:1.7;
    margin:0;
}

/*=============================
    RESPONSIVE
=============================*/
@media(max-width:992px){

.gas-feature-section{
    padding:60px 25px;
}

.gas-feature-wrapper{
    flex-direction:column;
    gap:40px;
}

.gas-content{
    text-align:center;
}

.gas-content p{
    text-align:left;
}

.gas-content h2{
    font-size:36px;
}

.gas-btn{
    margin-bottom:30px;
}

}

@media(max-width:576px){

.gas-feature-section{
    padding:50px 20px;
}

.gas-content h2{
    font-size:30px;
}

.gas-content p{
    font-size:16px;
}

.gas-card{
    padding:25px;
}

.gas-icon{
    width:60px;
    height:60px;
    font-size:28px;
}

.gas-card h3{
    font-size:22px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-102a57f *//* =========================
   MODERN ABOUT SECTION
========================= */

:root{
    --primary:#0B3D6D;
    --primary-dark:#0B6E4F;
    --primary-light:#0B6E4F;
}
   
.about-section{


    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:70px;

    padding:0px 7%;

    background:linear-gradient(135deg,#ffffff 0%,#faf8ff 100%);

    box-sizing:border-box;
}

/* GLOW BACKGROUND */
.about-section::before{
    content:'';
    position:absolute;

    width:450px;
    height:450px;

    background:var(--primary);

    filter:blur(140px);
    opacity:.12;

    top:-180px;
    left:-120px;

    z-index:0;
}

.about-section::after{
    content:'';
    position:absolute;

    width:350px;
    height:350px;

    background:#b8a7ff;

    filter:blur(120px);
    opacity:.10;

    bottom:-150px;
    right:-80px;

    z-index:0;
}

/* IMAGE */
.about-image{
    flex:1;
    position:relative;
    z-index:2;
}

.about-image img{
    width:100%;
    height:auto;
    display:block;

    border-radius:28px;

    box-shadow:0 20px 50px rgba(0,0,0,.15);

    transition:.5s ease;
}

.about-image:hover img{
    transform:scale(1.03);
}

/* BORDER */
.about-image::before{
    content:'';
    position:absolute;

    top:25px;
    left:-25px;

    width:100%;
    height:100%;

    border:3px solid var(--primary);
    border-radius:28px;

    z-index:-1;
}

/* CONTENT */
.about-content{
    flex:1;
    position:relative;
    z-index:2;
}

/* TAG */
.about-tag{
    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(132,105,233,.12);

    color:var(--primary);

    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:20px;
}

/* HEADING */
.about-content h2{
    font-size:52px;
    line-height:1.2;
    font-weight:900;

    color:#111;

    margin-bottom:25px;
}

.about-content h2 span{
    color:var(--primary);
}

/* LINE */
.about-line{
    width:120px;
    height:5px;

    background:linear-gradient(90deg,var(--primary),#b8a7ff);

    border-radius:10px;

    margin-bottom:30px;
}

/* TEXT */
.about-content p{
    font-size:17px;
    line-height:1.9;

    color:#333;

    margin-bottom:20px;

    text-align:justify;
}

/* BUTTON */
.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:20px;

    padding:16px 38px;

    border-radius:60px;

    background:linear-gradient(135deg,var(--primary),var(--primary-dark));

    color:#fff;
    text-decoration:none;

    font-size:16px;
    font-weight:700;

    transition:.4s ease;

    box-shadow:0 12px 30px rgba(132,105,233,.30);
}

/* BUTTON HOVER */
.about-btn:hover{
    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(132,105,233,.40);
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

.about-section{
    gap:50px;
    padding:70px 6%;
}

.about-content h2{
    font-size:42px;
}

.about-content p{
    font-size:16px;
}

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

.about-section{
    flex-direction:column;
    text-align:center;
    gap:40px;
    padding:60px 20px;
}

.about-image::before{
    display:none;
}

.about-content h2{
    font-size:34px;
}

.about-line{
    margin:0 auto 25px;
}

.about-content p{
    font-size:15.5px;
    line-height:1.8;
    text-align:justify;
}

.about-btn{
    width:100%;
    max-width:260px;
}

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

.about-section{
    padding:50px 15px;
}

.about-content h2{
    font-size:28px;
}

.about-content p{
    font-size:14.5px;
    text-align:justify;
}

.about-tag{
    font-size:11px;
    padding:8px 18px;
}

.about-btn{
    padding:14px 28px;
    font-size:15px;
}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b639b67 *//* ===================================
   MODERN NEWS SUBSCRIBE SECTION
=================================== */

.news-subscribe{


    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
    gap:60px;

    padding:0px 6%;

    background:
    linear-gradient(135deg,#fff,#faf8ff);

    box-sizing:border-box;
}


/* BACKGROUND GLOW */
.news-subscribe::before{
    content:'';

    position:absolute;

    width:420px;
    height:420px;

    background:#0B6E4F;

    filter:blur(150px);

    opacity:0.10;

    top:-180px;
    left:-100px;
}


.news-subscribe::after{
    content:'';

    position:absolute;

    width:320px;
    height:320px;

    background:#b8a7ff;

    filter:blur(120px);

    opacity:0.10;

    bottom:-120px;
    right:-60px;
}


/* CONTENT ABOVE GLOW */
.news-subscribe > *{
    position:relative;
    z-index:2;
}


/* LEFT SIDE */

.news-subscribe__left{
    flex:1;
}


/* SMALL TAG */

.subscribe-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(132,105,233,0.10);

    color:#8469e9;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;
    text-transform:uppercase;

    margin-bottom:20px;
}


/* TITLE */

.news-subscribe__title{

    font-size:52px;
    line-height:1.2;

    color:#0B6E4F;

    font-weight:900;

    margin-bottom:25px;
}


.news-subscribe__title span{

    color:#000;

}


/* DECORATIVE LINE */

.subscribe-line{

    width:120px;
    height:5px;

    border-radius:20px;

    background:
    linear-gradient(90deg,#8469e9,#b8a7ff);

    margin-bottom:30px;

    position:relative;
}


.subscribe-line::after{

    content:'';

    position:absolute;

    width:14px;
    height:14px;

    background:#111;

    border-radius:50%;

    right:-5px;
    top:-4px;
}



/* TEXT */

.news-subscribe__text{

    font-size:17px;
    line-height:1.9;

    color:#000;

    margin-bottom:35px;

    text-align:justify;

    max-width:750px;

}


/* FORM */

.news-subscribe form{

    width:100%;

}



/* INPUTS */

.news-subscribe form input{

    width:100%;

    padding:18px 20px;

    margin-bottom:18px;

    border:none;

    border-radius:16px;

    background:#fff;

    font-size:15px;

    color:#111;

    outline:none;

    box-sizing:border-box;

    transition:.35s ease;

    box-shadow:
    0 10px 25px rgba(0,0,0,.06);

}



/* FOCUS */

.news-subscribe form input:focus{

    transform:translateY(-2px);

    box-shadow:
    0 12px 28px rgba(132,105,233,.18);

    border:1px solid rgba(132,105,233,.30);

}



/* PLACEHOLDER */

.news-subscribe form input::placeholder{

    color:#888;

}



/* BUTTON */

.news-subscribe form input[type="submit"]{

    background:
    linear-gradient(135deg,#000,#000);

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.4s ease;


    box-shadow:
    0 12px 28px rgba(132,105,233,.28);

}



/* BUTTON HOVER */

.news-subscribe form input[type="submit"]:hover{

    transform:translateY(-5px);

    box-shadow:
    0 18px 35px rgba(132,105,233,.38);

}



/* RIGHT PANEL */

.news-subscribe__right{

    flex:1;

    position:relative;

    padding:60px 50px;

    border-radius:30px;

    overflow:hidden;


    background:
    linear-gradient(135deg,#ddd,#ddd);


    color:#000;


    box-shadow:
    0 25px 50px rgba(132,105,233,.22);

}



/* GLASS EFFECT */

.news-subscribe__right::before{

    content:'';

    position:absolute;

    width:220px;
    height:220px;

    background:rgba(255,255,255,.18);

    border-radius:50%;

    top:-80px;
    right:-60px;

}



/* RIGHT TITLE */

.news-subscribe__right h3{

    font-size:36px;

    font-weight:900;

    margin-bottom:25px;

    position:relative;

    z-index:2;

}



/* RIGHT TEXT */

.news-subscribe__right p{

    font-size:17px;

    line-height:1.9;

    opacity:.96;

    text-align:justify;

    position:relative;

    z-index:2;

}



/* TABLET */

@media(max-width:992px){

.news-subscribe{

    gap:40px;

    padding:70px 5%;

}

.news-subscribe__title{

    font-size:42px;

}

.news-subscribe__right h3{

    font-size:30px;

}

}



/* MOBILE */

@media(max-width:768px){

.news-subscribe{

    flex-direction:column;

    padding:60px 20px;

    gap:35px;

}


.news-subscribe__title{

    font-size:34px;

    text-align:center;

}


.subscribe-line{

    margin:0 auto 25px;

}


.news-subscribe__text{

    text-align:center;

    font-size:15.5px;

}


.news-subscribe__right{

    padding:40px 30px;

}


.news-subscribe__right h3{

    font-size:28px;

    text-align:center;

}


.news-subscribe__right p{

    text-align:center;

    font-size:15px;

}


.news-subscribe form input{

    padding:16px 18px;

}

}



/* SMALL MOBILE */

@media(max-width:480px){

.news-subscribe{

    padding:50px 15px;

}


.news-subscribe__title{

    font-size:28px;

}


.news-subscribe__text{

    font-size:14px;

}


.subscribe-tag{

    font-size:11px;

    padding:8px 18px;

}


.news-subscribe__right{

    padding:35px 22px;

    border-radius:22px;

}


.news-subscribe__right h3{

    font-size:24px;

}


.news-subscribe__right p{

    font-size:14px;

}


.news-subscribe form input{

    font-size:14px;

}

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-03dc5b0 */.founder-section{
    padding:0px 20px;

}

.section-title{
    text-align:center;
    font-size:42px;
    margin-bottom:10px;
    font-weight:700;
}

.section-title span{
    color:#000;
}

/*================ 3 COLUMN LAYOUT ================*/

.founder-wrapper{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:300px 300px 1fr;
    gap:40px;
    align-items:center;
}

/*================ FOUNDER CARD ================*/

.founder-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:.35s;
}

.founder-card:hover{
    transform:translateY(-10px);
}

.founder-card img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

.founder-info{
    padding:25px;
    text-align:center;
}

.founder-info h3{
    font-size:24px;
    color:#111;
    margin-bottom:8px;
}

.founder-info p{
    color:#000;
    font-weight:700;
    font-size:15px;
}

/*================ CONTENT ================*/

.founder-content{
    background:#fff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
}

.founder-content:before{
    content:"";
    position:absolute;
    top:0;
    left:50px;
    width:80px;
    height:5px;
    background:#000;
    border-radius:50px;
}

.founder-name{
    font-size:34px;
    font-weight:700;
    margin-bottom:15px;
}

.founder-role{
    color:#000;
    font-size:16px;
    font-weight:700;
    margin-bottom:25px;
    text-transform:uppercase;
}

.founder-content p{
    font-size:16px;
    line-height:1.9;
    color:#000;
    margin-bottom:20px;
    text-align:justify;
}

.highlight-box{
    background:linear-gradient(135deg,#ddd,#ddd);
    color:#000;
    padding:22px;
    border-radius:15px;
    line-height:1.8;
    font-weight:600;
    margin-top:30px;
}

.btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 32px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.btn:hover{
    background:#ddd;
    color: #000;
}

/*================ TABLET ================*/

@media(max-width:1100px){

.founder-wrapper{
    grid-template-columns:1fr 1fr;
}

.founder-content{
    grid-column:span 2;
}

}

/*================ MOBILE ================*/

@media(max-width:768px){

.section-title{
    font-size:32px;
}

.founder-wrapper{
    grid-template-columns:1fr;
}

.founder-content{
    grid-column:unset;
    padding:35px 25px;
}

.founder-content:before{
    left:50%;
    transform:translateX(-50%);
}

.founder-name{
    font-size:28px;
    text-align:center;
}

.founder-role{
    text-align:center;
}

.founder-content p{
    text-align:center;
}

.highlight-box{
    text-align:left;
}

.btn{
    display:block;
    width:max-content;
    margin:30px auto 0;
}

}/* End custom CSS */