@import url("variables.css");
@import url("responsive.css");
@import url("header.css");
@import url("footer.css");

/*=========================
    RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:var(--body-font);
    font-size:var(--fs-16);
    color:var(--dark);
    background:#fff;
    line-height:1.7;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    padding:0;
    margin:0;

}

h1,h2,h3,h4,h5,h6{

    font-family:var(--heading-font);
    font-weight:700;
    line-height:1.2;
    color:var(--dark);

}

p{

    margin-bottom:0;

}

section{

    position:relative;

}

/*=========================
    SPACING
==========================*/

.py-120{

    padding:120px 0;

}

.py-100{

    padding:100px 0;

}

.py-80{

    padding:80px 0;

}

.mb-20{

    margin-bottom:20px;

}

.mb-30{

    margin-bottom:30px;

}

.mb-40{

    margin-bottom:40px;

}

.mb-60{

    margin-bottom:60px;

}

/*=========================
    SECTION TITLE
==========================*/

.section-subtitle{

    color:var(--secondary);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;

}

.section-title{

    font-size:38px;
    font-weight:700;
    margin-bottom:20px;

}

.section-desc{

    color:var(--dark-light);
    max-width:650px;

}

/*=========================
    BUTTONS
==========================*/

.btn-primary{

    background:var(--primary);
    border:none;
    border-radius:50px;
    padding:14px 34px;
    color:#fff;
    font-weight:600;
    transition:.3s;

}

.btn-primary:hover{

    background:var(--primary-dark);

}

.btn-outline{

    border:2px solid var(--primary);
    color:var(--primary);
    padding:14px 34px;
    border-radius:50px;
    font-weight:600;

}

.btn-outline:hover{

    background:var(--primary);
    color:#fff;

}

/*=========================
    CARD
==========================*/

.custom-card{

    background:#fff;
    border-radius:20px;
    box-shadow:var(--shadow);
    transition:.35s;

}

.custom-card:hover{

    transform:translateY(-8px);

}

/*=========================
    BACK TO TOP
==========================*/

#backToTop{

    width:50px;
    height:50px;

    position:fixed;

    right:25px;
    bottom:25px;

    border:none;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:none;

    z-index:999;

}
/*==========================================
                HERO
===========================================*/

/* .hero-section{

    position:relative;

    padding:130px 0 100px;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,#FFF7EA 0%,transparent 30%),
    radial-gradient(circle at bottom right,#EAF4FF 0%,transparent 35%),
    #ffffff;

} */
 
.hero-section {
    position: relative;
    padding: 130px 0 100px;
    overflow: hidden;
    background: url('../images/hero/sunfuel-banner.webp');
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-section::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:rgba(11,78,162,.05);

    border-radius:50%;

    top:-250px;

    right:-250px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    background:#EFF6FF;

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-weight:600;

    margin-bottom:25px;

}

.hero-badge i{

    color:var(--secondary);

}

.hero-row{
    padding:20px;
    border-radius:20px;
    background:rgb(252 252 252 / 65%);
}

.hero-section h1{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:25px;

}

.hero-section h1 span{

    color:var(--primary);

}

.hero-section p{

    font-size:18px;

    color:#555;

    margin-bottom:35px;

    max-width:620px;

}

.hero-btns{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.hero-features{

    display:flex;

    flex-wrap:wrap;

    gap:20px;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.hero-features i{

    color:#10B981;

}

.hero-image{

    position:relative;

    z-index:2;

}

.hero-image img{

    width:100%;

    height:auto;

}
/*======================================
        ABOUT HOME
=======================================*/

/* .about-home{

    background:#fff;

}

.about-image-wrapper{

    position:relative;

}

.about-image-wrapper img{

    border-radius:24px;

}

.experience-card{

    position:absolute;

    left:-20px;

    bottom:40px;

    background:var(--primary);

    color:#fff;

    width:180px;

    text-align:center;

    padding:25px;

    border-radius:20px;

    box-shadow:var(--shadow-lg);

    z-index:2;

}

.experience-card h2{

    color:#fff;

    font-size:48px;

    margin-bottom:5px;

}

.experience-card span{

    font-size:15px;

    line-height:1.5;

    display:block;

}

.about-features{

    margin-top:40px;

}

.feature-item{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:28px;

}

.feature-icon{

    width:60px;

    height:60px;

    border-radius:18px;

    background:#EFF6FF;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    flex-shrink:0;

}

.feature-item h5{

    margin-bottom:6px;

    font-size:20px;

}

.feature-item p{

    color:#666;

}

.stats-row{

    border-top:1px solid var(--gray-200);

    padding-top:35px;

}

.stat-box{

    text-align:center;

}

.stat-box h3{

    font-size:36px;

    color:var(--primary);

    margin-bottom:8px;

}

.stat-box span{

    color:#666;

    font-weight:500;

} */


/* =========================================================
   COMPANY PROFILE
========================================================= */

.dl-about-profile {
    padding: 90px 0;
}

.dl-about-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.dl-about-profile-image {
    position: relative;
}

.dl-about-profile-image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
}

.dl-about-experience-box {
    position: absolute;
    right: -25px;
    bottom: 35px;
    min-width: 170px;
    padding: 25px;
    background: #0a3c81;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(11, 61, 145, 0.25);
}

.dl-about-experience-box strong {
    display: block;
    margin-bottom: 4px;
    font-size: 38px;
    line-height: 1;
    font-weight: 800;
}

.dl-about-experience-box span {
    font-size: 13px;
    line-height: 1.5;
}

.dl-about-profile-content h2 {
    margin: 18px 0;
    color: #0a3c81;
    font-size: 40px;
    line-height: 1.25;
    font-weight: 800;
}

.dl-about-profile-content h2 span {
    color: #f6931d;
}

.dl-about-profile-content > p {
    margin-bottom: 15px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.8;
}

.dl-about-profile-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 30px;
}

.dl-about-profile-point {
    display: flex;
    gap: 12px;
}

.dl-about-profile-point > span {
    display: flex;
    flex: 0 0 28px;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #0a3c81;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
}

.dl-about-profile-point h4 {
    margin: 0 0 5px;
    color: #082b61;
    font-size: 18px;
    font-weight: 700;
}

.dl-about-profile-point p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}



/*==============================
        SOLUTIONS
==============================*/

.solutions-section{

    background:#F8FAFC;

}

.solution-card{

    height:100%;

    background:#fff;

    border-radius:24px;

    padding:40px;

    transition:.35s;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    border:1px solid #EEF2F7;

}

.solution-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.10);

}

.solution-icon{

    width:72px;

    height:72px;

    border-radius:18px;

    background:#EFF6FF;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:32px;

    margin-bottom:25px;

}

.solution-card h3{

    margin-bottom:15px;

}

.solution-card p{

    color:#666;

    margin-bottom:25px;

}

.solution-card ul{

    margin-bottom:30px;

}

.solution-card ul li{

    padding:8px 0;

    color:#555;

    border-bottom:1px dashed #eee;

}

.solution-card a{

    color:var(--primary);

    font-weight:600;

}

.solution-card a i{

    margin-left:8px;

    transition:.3s;

}

.solution-card:hover a i{

    transform:translateX(6px);

}
/*==================================
        EPC SECTION
===================================*/

.epc-section{

    background:linear-gradient(135deg,#0B4EA2,#0A2E66);

    color:#fff;

    overflow:hidden;

}

.epc-section .section-title,
.epc-section .section-subtitle,
.epc-section .section-desc{

    color:#fff;

}

.epc-process{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:30px;

    flex-wrap:wrap;

    margin-top:70px;

}

.process-item{

    width:280px;

    text-align:center;

    padding:40px 30px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    transition:.35s;

}

.process-item:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.process-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#fff;

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

    margin:auto auto 25px;

}

.process-item h4{

    color:#fff;

    margin-bottom:15px;

}

.process-item p{

    color:rgba(255,255,255,.85);

}

.process-arrow{

    font-size:40px;

    color:#F7941D;

}

.epc-counter{

    text-align:center;

    padding:30px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

}

.epc-counter h3{

    font-size:44px;

    color:#fff;

    margin-bottom:10px;

}

.epc-counter span{

    color:rgba(255,255,255,.8);

}
/*==========================
      INDUSTRIES
===========================*/

.industries-section{

    background:#fff;

}

.industry-card{

    height:100%;

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    border:1px solid #EDF2F7;

    transition:.35s;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

}

.industry-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(0,0,0,.08);

}

.industry-card i{

    font-size:42px;

    color:var(--primary);

    margin-bottom:25px;

    display:block;

}

.industry-card h4{

    margin-bottom:15px;

}

.industry-card p{

    color:#666;

}
/*====================================
        WHY CHOOSE US
=====================================*/

.why-section{

    background:#F8FAFC;

}

.why-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    height:100%;

    transition:.35s;

    border:1px solid #EDF2F7;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.why-icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#EFF6FF;

    color:var(--primary);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:30px;

    margin-bottom:25px;

}

.why-card h4{

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    margin-bottom:0;

}
/*=====================================
            CTA
======================================*/

.cta-section{

    padding:0 0 120px;

    background:#fff;

}

.cta-wrapper{

    background:linear-gradient(135deg,#0B4EA2,#0A2E66);

    border-radius:32px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    top:-180px;

    right:-120px;

}

.cta-subtitle{

    color:#F7941D;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

    display:block;

    margin-bottom:15px;

}

.cta-wrapper h2{

    color:#fff;

    font-size:42px;

    margin-bottom:20px;

}

.cta-wrapper p{

    color:rgba(255,255,255,.85);

    max-width:700px;

}

.btn-light{

    padding:16px 36px;

    border-radius:50px;

    font-weight:600;

    color:var(--primary);

}

.btn-light:hover{

    background:#F7941D;

    color:#fff;

}
.mobile-toggle{

    display:none;

    border:none;

    background:none;

    font-size:32px;

    color:#0B4EA2;

}

.mobile-menu{

    position:fixed;

    top:0;

    left:-100%;

    width:340px;

    height:100vh;

    background:#fff;

    z-index:99999;

    transition:.35s;

    overflow:auto;

    box-shadow:10px 0 40px rgba(0,0,0,.15);

}

.mobile-menu.active{

    left:0;

}

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.45);

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:99998;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}
.mobile-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px;

    border-bottom:1px solid #eee;

}

.mobile-header img{

    height:46px;

}

.mobile-close{

    border:none;

    background:none;

    font-size:22px;

}
.mobile-nav{

    list-style:none;

    margin:0;

    padding:20px;

}

.mobile-nav>li{

    border-bottom:1px solid #f1f1f1;

}

.mobile-nav a{

    display:block;

    padding:16px 0;

    color:#222;

    text-decoration:none;

    font-weight:600;

}
.has-submenu button{

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    border:none;

    background:none;

    padding:16px 0;

    font-weight:600;

}

.submenu{

    display:none;

    list-style:none;

    padding:0 0 15px 15px;

}

.submenu.active{

    display:block;

}

.submenu-title{

    margin-top:18px;

    font-size:13px;

    font-weight:700;

    color:#0B4EA2;

    text-transform:uppercase;

}

.submenu li a{

    padding:10px 0;

    color:#666;

    font-size:14px;

}
.mobile-btn{

    display:block;

    margin:25px;

    text-align:center;

    background:#0B4EA2;

    color:#fff;

    text-decoration:none;

    padding:15px;

    border-radius:50px;

}
/*=========================================
CLIENTS
=========================================*/

.dl-clients{

    padding:90px 0;
    background:#f7f9fc;

}

.dl-clients-heading{

    max-width:700px;
    margin:auto;
    text-align:center;
    margin-bottom:55px;

}

.dl-clients-tag{

    display:inline-block;
    padding:8px 18px;
    border-radius:40px;
    background:#eef4ff;
    color:#0B3D91;
    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;

}

.dl-clients-heading h2{

    margin:18px 0 15px;
    font-size:40px;
    font-weight:800;
    color:#082b61;

}

.dl-clients-heading h2 span{

    color:#f6931d;

}

.dl-clients-heading p{

    color:#64748B;
    font-size:15px;
    line-height:1.8;

}


/*--------------------------------*/

.dl-clients-slider{

    overflow:hidden;
    margin-bottom:22px;

}

.dl-clients-track{

    display:flex;
    width:max-content;
    animation:clients-scroll 38s linear infinite;

}

.reverse .dl-clients-track{

    animation:clients-scroll-reverse 45s linear infinite;

}

.slow .dl-clients-track{

    animation:clients-scroll 55s linear infinite;

}

.dl-clients-slider:hover .dl-clients-track{

    animation-play-state:paused;

}


/*--------------------------------*/

.dl-client-logo{

    width:210px;
    height:100px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-right:20px;

    background:#fff;

    border-radius:14px;

    border:1px solid #E8EDF4;

    transition:.35s;

}

.dl-client-logo:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.dl-client-logo img{

    max-width:213px;

    max-height:80px;
 
    /* opacity:.7; */

    transition:.35s;

}

.dl-client-logo:hover img{

    filter:none;

    opacity:1;

}



/*--------------------------------*/

@keyframes clients-scroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}


@keyframes clients-scroll-reverse{

    from{

        transform:translateX(-50%);

    }

    to{

        transform:translateX(0);

    }

}



/*--------------------------------*/

.dl-clients-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:60px;

}

.dl-clients-stats div{

    background:#fff;

    border:1px solid #E7EDF4;

    border-radius:14px;

    padding:28px;

    text-align:center;

}

.dl-clients-stats strong{

    display:block;

    color:#0B3D91;

    font-size:34px;

    font-weight:800;

    margin-bottom:8px;

}

.dl-clients-stats span{

    color:#64748B;

    font-size:14px;

}

/* =========================================================
   PRODUCTS PAGE - COMMON
========================================================= */

.dl-products-tag {
    display: inline-block;
    padding: 7px 14px;
    background: #f1f6ff;
    color: #0b3d91;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* =========================================================
   PROCESS
========================================================= */

.dl-products-process {
    padding: 85px 0;
    background: #f7f9fc;
}

.dl-products-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dl-products-process-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e5eaf1;
    border-radius: 14px;
}

.dl-products-process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    background: #eef4ff;
    border-radius: 10px;
    color: #0b3d91;
    font-size: 15px;
    font-weight: 800;
}

.dl-products-process-card h3 {
    margin: 0 0 10px;
    color: #082b61;
    font-size: 20px;
    font-weight: 700;
}

.dl-products-process-card p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}