body{
    font-family:'Manrope', sans-serif;
    overflow-x:hidden;
    font-size:15px;
}

/* TOP BAR */

.top-bar{
    width:100%;
    background:#1747ff;
    overflow:hidden;
    padding:10px 0;
    white-space:nowrap;
    position:relative;
    z-index:999;
}

.marquee-wrapper{
    display:flex;
    align-items:center;
    width:max-content;
    animation: marquee 22s linear infinite;
}

.marquee-wrapper span{
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-right:80px;
}

@keyframes marquee{
    from{
        transform:translateX(100%);
    }
    to{
        transform:translateX(-100%);
    }
}

/* NAVBAR */

.custom-navbar{
    background:#f5f5f5;
    padding:12px 0;
    border-bottom:4px solid #1747ff;
    position:sticky;
    top:0;
    z-index:999;
}

.logo-box{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.main-logo{
    width:60px;
    height:60px;
    object-fit:contain;
}

.logo-content{
    margin-left:12px;
}

.logo-content h2{
    margin:0;
    font-size:20px;
    font-weight:800;
    color:#ff5c00;
    line-height:1;
}

.logo-content p{
    margin:0;
    color:#12a150;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.navbar-nav{
    gap:22px;
}

.nav-link{
    color:#5f6675 !important;
    font-size:13px;
    font-weight:700;
    transition:0.3s;
    position:relative;
}

.nav-link:hover,
.nav-link.active{
    color:#1747ff !important;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:#1747ff;
    transition:0.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

.discount-btn{
    background:#ffc400;
    color:#000;
    padding:15px 30px;
    border-radius:18px;
    text-decoration:none;
    font-weight:800;
    font-size:15px;
    transition:0.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.discount-btn:hover{
    background:#ffb300;
    color:#000;
    transform:translateY(-2px);
}

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%2823,71,255,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

@media(max-width:991px){

    .custom-navbar{
        padding:14px 0;
    }

    .navbar-collapse{
        background:#fff;
        padding:20px;
        border-radius:18px;
        margin-top:15px;
        box-shadow:0 8px 25px rgba(0,0,0,0.08);
    }

    .navbar-nav{
        gap:5px;
        margin-top:10px;
    }

    .nav-link{
        padding:12px 0 !important;
    }

    .discount-btn{
        width:100%;
        margin-top:15px;
    }

    .logo-content h2{
        font-size:20px;
    }

    .main-logo{
        width:52px;
        height:52px;
    }
}

@media(max-width:576px){

    .marquee-wrapper span{
        font-size:12px;
        margin-right:50px;
    }

    .logo-content h2{
        font-size:18px;
    }

    .logo-content p{
        font-size:10px;
    }

    .discount-btn{
        font-size:14px;
        padding:14px 20px;
    }
}



/*hero section*/


.hero-section{
    position:relative;
    min-height:100vh;
    background:linear-gradient(135deg,#1747ff,#02114f);
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-section::before{
    content:'';
    position:absolute;
    inset:0;
    background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size:46px 46px;
}

.hero-overlay{
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    filter:blur(120px);
    top:-150px;
    right:-100px;
}

.hero-content{
    position:relative;
    z-index:2;
    color:#fff;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.12);
    border:1px solid rgba(255,255,255,0.15);
    padding:10px 22px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}

.hero-badge i{
    color:#ffc400;
}

.hero-content h1{
    font: size 51px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#ffc400;
    font-style:italic;
}

.hero-content p{
    max-width:650px;
    color:#d7dff7;
    font-size:12px;
    line-height:1.5;
    margin-bottom:40px;
}

.hero-btns{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:55px;
}

.primary-btn{
    background:#ffc400;
    color:#000;
    padding:14px 24px;
    border-radius:13px;
    text-decoration:none;
    font-weight:800;
    transition:0.3s;
}

.primary-btn:hover{
    background:#ffb300;
    color:#000;
    transform:translateY(-3px);
}

.secondary-btn{
    border:2px solid rgba(255,255,255,0.25);
    color:#fff;
    padding:14px 24px;
    border-radius:13px;
    text-decoration:none;
    font-weight:800;
    transition:0.3s;
}

.secondary-btn:hover{
    background:#fff;
    color:#000;
}

.hero-stats{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.stat-box{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    padding:16px 22px;
    border-radius:20px;
    min-width:140px;
}

.stat-box h3{
    margin:0;
    font-size:24px;
    font-weight:800;
    color:#ffc400;
}

.stat-box p{
    margin:8px 0 0;
    font-size:14px;
    color:#dbe2ff;
}

.hero-image-box{
    position:relative;
    z-index:2;
}

.hero-image-box img{
    width:100%;
    border-radius:35px;
    box-shadow:0 20px 60px rgba(0,0,0,0.35);
}

.floating-card{
    position:absolute;
    bottom:30px;
    left:-40px;
    background:#fff;
    padding:18px 22px;
    border-radius:22px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

.icon-box{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#1747ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.floating-card h4{
    margin:0;
    font-size:22px;
    font-weight:800;
    color:#111;
}

.floating-card p{
    margin:4px 0 0;
    font-size:14px;
    color:#666;
}

@media(max-width:991px){

    .hero-section{
        padding:120px 0 80px;
        text-align:center;
    }

    .hero-content h1{
        font-size:52px;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-btns{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
        margin-bottom:50px;
    }

    .floating-card{
        left:50%;
        transform:translateX(-50%);
        bottom:-20px;
    }
}

@media(max-width:576px){

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-btns{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        text-align:center;
    }

    .stat-box{
        width:100%;
    }

    .floating-card{
        width:90%;
        padding:16px;
    }

    .floating-card h4{
        font-size:18px;
    }
}

/*hero section*/


/*service section*/

.services-section{
    padding:80px 0;
    background:#f7f9fc;
}

.section-title{
    margin-bottom:70px;
}

.section-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    border:1px solid #dbe2ee;
    padding:12px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:800;
    color:#5c6b85;
    letter-spacing:1px;
    margin-bottom:25px;
}

.section-badge i{
    color:#2563ff;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    color:#111827;
    line-height:1.2;
}

.section-title h2 span{
    color:#61708f;
}

.service-card{
    background:#fff;
    border:1px solid #e5ebf4;
    border-radius:28px;
    padding:28px;
    position:relative;
    overflow:hidden;
    transition:0.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.top-line{
    position:absolute;
    top:35px;
    left:0;
    width:4px;
    height:42px;
    border-radius:20px;
}

.orange{
    background:#ff8a00;
}

.blue{
    background:#2563ff;
}

.green{
    background:#00b86b;
}

.cyan{
    background:#00b8d9;
}

.purple{
    background:#8a3ffc;
}

.pink{
    background:#ff3366;
}

.service-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:28px;
}

.service-icon{
    width:65px;
    height:65px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
}

.orange-bg{
    background:#fff4eb;
    color:#ff8a00;
}

.blue-bg{
    background:#edf5ff;
    color:#2563ff;
}

.green-bg{
    background:#ebfff4;
    color:#00b86b;
}

.cyan-bg{
    background:#ebfbff;
    color:#00b8d9;
}

.purple-bg{
    background:#f5efff;
    color:#8a3ffc;
}

.pink-bg{
    background:#fff0f4;
    color:#ff3366;
}

.service-tag{
    padding:8px 14px;
    border-radius:30px;
    font-size:11px;
    font-weight:800;
}

.orange-tag{
    background:#fff4eb;
    color:#ff8a00;
}

.blue-tag{
    background:#edf5ff;
    color:#2563ff;
}

.green-tag{
    background:#ebfff4;
    color:#00b86b;
}

.cyan-tag{
    background:#ebfbff;
    color:#00b8d9;
}

.purple-tag{
    background:#f5efff;
    color:#8a3ffc;
}

.pink-tag{
    background:#fff0f4;
    color:#ff3366;
}

.service-card h3{
    font-size:28px;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

.service-card p{
    font-size:12px;
    line-height:1.5;
    color:#6b7280;
    margin-bottom:35px;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#2563ff;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    transition:0.3s;
}

.service-btn:hover{
    background:#1747ff;
    color:#fff;
}

@media(max-width:991px){

    .services-section{
        padding:90px 0;
    }

    .section-title h2{
        font-size:42px;
    }

    .service-card{
        padding:28px;
    }
}

@media(max-width:576px){

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:34px;
    }

    .service-card h3{
        font-size:24px;
    }

    .service-btn{
        width:100%;
        justify-content:center;
    }
}
/*service section*/



/*why choose us section*/

.why-choose-section{
    padding:80px 0;
    background:#f7f9fc;
}

.why-choose-wrapper{
    background:#fff;
    border:1px solid #e5ebf4;
    border-radius:35px;
    padding:70px;
    box-shadow:0 10px 30px rgba(0,0,0,0.03);
}

.why-left{
    padding-right:30px;
}

.why-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#eef4ff;
    color:#2563ff;
    border-radius:50px;
    padding:10px 22px;
    font-size:12px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:25px;
}

.why-badge i{
    font-size:13px;
}

.why-left h2{
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:25px;
}

.why-left p{
    font-size:17px;
    line-height:1.9;
    color:#6b7280;
    margin-bottom:35px;
}

.why-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#2563ff;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    transition:0.3s;
}

.why-btn:hover{
    background:#1747ff;
    color:#fff;
    transform:translateY(-2px);
}

.feature-card{
    border-radius:28px;
    padding:28px;
    height:100%;
    transition:0.35s;
    border:1px solid transparent;
}

.feature-card:hover{
    transform:translateY(-6px);
}

.feature-icon{
    width:62px;
    height:62px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:26px;
    font-weight:800;
    color:#111827;
    margin-bottom:15px;
}

.feature-card p{
    font-size:15px;
    line-height:1.9;
    color:#6b7280;
    margin:0;
}

.yellow-card{
    background:#fffdf5;
    border-color:#ffe7a3;
}

.yellow-icon{
    background:#fff4cc;
    color:#ff9800;
}

.blue-card{
    background:#f4f9ff;
    border-color:#cfe5ff;
}

.blue-icon{
    background:#dceeff;
    color:#2563ff;
}

.green-card{
    background:#f3fff7;
    border-color:#c7f2d6;
}

.green-icon{
    background:#dcfce7;
    color:#00a86b;
}

.purple-card{
    background:#faf7ff;
    border-color:#e4d4ff;
}

.purple-icon{
    background:#efe7ff;
    color:#8a3ffc;
}

@media(max-width:991px){

    .why-choose-section{
        padding:90px 0;
    }

    .why-choose-wrapper{
        padding:45px;
    }

    .why-left{
        padding-right:0;
        margin-bottom:40px;
        text-align:center;
    }

    .why-left h2{
        font-size:40px;
    }
}

@media(max-width:576px){

    .why-choose-wrapper{
        padding:30px 22px;
        border-radius:25px;
    }

    .why-left h2{
        font-size:32px;
    }

    .why-left p{
        font-size:15px;
    }

    .feature-card{
        padding:28px;
    }

    .feature-card h3{
        font-size:22px;
    }

    .why-btn{
        width:100%;
        justify-content:center;
    }
}

/*why choose us section*/


/*impact section*/

.impact-section{
    padding:80px 0;
    background:#f7f9fc;
}

.section-title{
    margin-bottom:70px;
}

.impact-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ebfff4;
    color:#00a86b;
    padding:10px 22px;
    border-radius:50px;
    font-size:12px;
    font-weight:800;
    margin-bottom:25px;
}

.section-title h2{
    font-size:58px;
    font-weight:800;
    color:#111827;
    margin-bottom:20px;
}

.section-title h2 span{
    color:#00a86b;
}

.section-title p{
    max-width:700px;
    margin:auto;
    font-size:12px;
    line-height:1.5;
    color:#6b7280;
}

.impact-card{
    background:#fff;
    border:1px solid #e4ebf4;
    border-radius:28px;
    padding:28px;
    height:100%;
    transition:0.35s;
}

.impact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,0.06);
}

.impact-icon{
    width:65px;
    height:65px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    margin-bottom:30px;
}

.green-bg{
    background:#ebfff4;
    color:#00a86b;
}

.blue-bg{
    background:#edf5ff;
    color:#2563ff;
}

.orange-bg{
    background:#fff4eb;
    color:#ff8a00;
}

.impact-card h3{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
}

.impact-card span{
    display:block;
    font-size:13px;
    font-weight:800;
    color:#718096;
    letter-spacing:1px;
    margin-bottom:20px;
}

.impact-card p{
    font-size:16px;
    line-height:1.9;
    color:#6b7280;
    margin:0;
}

.savings-wrapper{
    background:linear-gradient(135deg,#f4f7fa,#eef8f4);
    border-radius:35px;
    padding:70px;
    overflow:hidden;
    border:1px solid #e5ebf4;
}

.savings-content h3{
    font-size:42px;
    font-weight:800;
    color:#111827;
    margin-bottom:40px;
}

.saving-point{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:30px;
}

.check-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#dcfce7;
    color:#00a86b;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    flex-shrink:0;
}

.saving-point h4{
    font-size:20px;
    font-weight:700;
    color:#111827;
    margin-bottom:8px;
}

.saving-point p{
    font-size:15px;
    line-height:1.8;
    color:#6b7280;
    margin:0;
}

.graph-box{
    background:#fff;
    border-radius:28px;
    padding:45px 35px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.graph-bars{
    height:280px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:15px;
}

.bar-wrap{
    text-align:center;
    flex:1;
}

.bar{
    width:100%;
    border-radius:12px 12px 0 0;
    background:linear-gradient(to top,#9be7b8,#c9f5d9);
}

.h1{
    height:90px;
}

.h2{
    height:150px;
}

.h3{
    height:120px;
}

.h4{
    height:190px;
}

.h5{
    height:140px;
}

.h6{
    height:220px;
}

.bar-wrap span{
    display:block;
    margin-top:14px;
    font-size:12px;
    font-weight:700;
    color:#7b8794;
}

.graph-title{
    text-align:center;
    margin-top:30px;
    font-size:15px;
    font-weight:700;
    color:#4b5563;
}

@media(max-width:991px){

    .impact-section{
        padding:90px 0;
    }

    .section-title h2{
        font-size:42px;
    }

    .savings-wrapper{
        padding:45px;
    }

    .savings-content{
        margin-bottom:50px;
    }
}

@media(max-width:576px){

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:34px;
    }

    .impact-card{
        padding:28px;
    }

    .impact-card h3{
        font-size:34px;
    }

    .savings-wrapper{
        padding:30px 22px;
        border-radius:25px;
    }

    .savings-content h3{
        font-size:30px;
    }

    .graph-box{
        padding:30px 20px;
    }

    .graph-bars{
        height:220px;
        gap:10px;
    }
}

/*impact section*/

/*advantage section*/

.advantage-section{
    padding:80px 0;
    background:#f7f9fc;
}

.advantage-left{
    padding-right:40px;
}

.advantage-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#eef4ff;
    color:#2563ff;
    padding:10px 22px;
    border-radius:50px;
    font-size:12px;
    font-weight:800;
    margin-bottom:30px;
}

.advantage-left h2{
    font-size:42px;
    font-weight:800;
    line-height:1.15;
    color:#111827;
    margin-bottom:30px;
}

.advantage-left h2 span{
    color:#2563ff;
}

.advantage-left p{
    font-size:17px;
    line-height:1.9;
    color:#6b7280;
    margin-bottom:40px;
}

.stats-wrapper{
    display:flex;
    gap:60px;
    margin-bottom:40px;
}

.stat-item h3{
    font-size:38px;
    font-weight:800;
    color:#111827;
    margin-bottom:8px;
}

.stat-item span{
    display:block;
    font-size:12px;
    font-weight:800;
    color:#7b8794;
    letter-spacing:1px;
    margin-bottom:15px;
}

.line{
    width:40px;
    height:4px;
    border-radius:20px;
}

.green-line{
    background:#00c27a;
}

.blue-line{
    background:#2563ff;
}

.audit-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#2563ff;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    transition:0.3s;
}

.audit-btn:hover{
    background:#1747ff;
    color:#fff;
}

.slider-wrapper{
    position:relative;
}

.feature-slide{
    background:#fff;
    border:1px solid #e4ebf4;
    border-radius:30px;
    padding:28px;
    min-height:360px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.slide-icon{
    width:65px;
    height:65px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    margin-bottom:30px;
}

.green-bg{
    background:#dcfce7;
    color:#00a86b;
}

.orange-bg{
    background:#fff4eb;
    color:#ff9800;
}

.purple-bg{
    background:#f3efff;
    color:#7c3aed;
}

.pink-bg{
    background:#fff0f4;
    color:#ff3366;
}

.blue-bg{
    background:#edf5ff;
    color:#2563ff;
}

.feature-slide h3{
    font-size:28px;
    font-weight:800;
    color:#111827;
    line-height:1.3;
    margin-bottom:20px;
}

.feature-slide p{
    font-size:12px;
    line-height:1.5;
    color:#6b7280;
    margin:0;
}

.slider-controls{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:35px;
}

.control-left{
    display:flex;
    align-items:center;
    gap:12px;
}

.slider-btn{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid #dbe2ee;
    background:#fff;
    color:#111827;
    transition:0.3s;
}

.slider-btn:hover{
    background:#2563ff;
    color:#fff;
    border-color:#2563ff;
}

.control-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.slide-count{
    font-size:14px;
    font-weight:800;
    color:#64748b;
    letter-spacing:2px;
}

.custom-indicators{
    position:static;
    margin:0;
    display:flex;
    align-items:center;
    gap:10px;
}

.custom-indicators button{
    width:10px !important;
    height:10px !important;
    border-radius:50%;
    border:none;
    background:#d6dce8 !important;
    opacity:1 !important;
}

.custom-indicators .active{
    width:28px !important;
    border-radius:20px !important;
    background:#2563ff !important;
}

@media(max-width:991px){

    .advantage-section{
        padding:90px 0;
    }

    .advantage-left{
        padding-right:0;
        margin-bottom:60px;
    }

    .advantage-left h2{
        font-size:46px;
    }

    .feature-slide{
        min-height:auto;
    }
}

@media(max-width:576px){

    .advantage-left h2{
        font-size:36px;
    }

    .advantage-left p{
        font-size:15px;
    }

    .stats-wrapper{
        gap:30px;
        flex-wrap:wrap;
    }

    .feature-slide{
        padding:30px;
    }

    .feature-slide h3{
        font-size:28px;
    }

    .feature-slide p{
        font-size:15px;
    }

    .slider-controls{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .control-right{
        width:100%;
        justify-content:space-between;
    }

    .audit-btn{
        width:100%;
        justify-content:center;
    }
}

/*advantage section*/


/*process section*/
.process-section{
    padding:80px 0;
    background:#f7f9fc;
}

.section-title{
    margin-bottom:90px;
}

.process-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#eef4ff;
    color:#2563ff;
    padding:10px 22px;
    border-radius:50px;
    font-size:12px;
    font-weight:800;
    margin-bottom:25px;
}

.section-title h2{
    font-size:58px;
    font-weight:800;
    color:#111827;
    line-height:1.2;
}

.section-title h2 span{
    color:#2563ff;
}

.process-item{
    margin-bottom:100px;
}

.process-item:last-child{
    margin-bottom:0;
}

.process-content h3{
    font-size:28px;
    font-weight:800;
    color:#111827;
    margin-bottom:22px;
}

.process-content p{
    font-size:12px;
    line-height:1.5;
    color:#6b7280;
    margin-bottom:30px;
}

.process-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#2563ff;
    font-size:12px;
    font-weight:800;
    margin-bottom:30px;
}

.process-tag i{
    font-size:14px;
}

.process-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2563ff;
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    transition:0.3s;
}

.process-btn:hover{
    background:#1747ff;
    color:#fff;
    transform:translateY(-2px);
}

.process-image{
    position:relative;
}

.process-image img{
    width:100%;
    border-radius:28px;
    height:360px;
    object-fit:cover;
    box-shadow:0 18px 40px rgba(0,0,0,0.12);
    transition:0.4s;
}

.process-image img:hover{
    transform:scale(1.02);
}

@media(max-width:991px){

    .process-section{
        padding:90px 0;
    }

    .section-title{
        margin-bottom:60px;
    }

    .section-title h2{
        font-size:42px;
    }

    .process-item{
        margin-bottom:70px;
    }

    .reverse-item .row{
        flex-direction:column-reverse;
    }

    .process-content{
        text-align:center;
    }
}

@media(max-width:576px){

    .section-title h2{
        font-size:34px;
    }

    .process-content h3{
        font-size:28px;
    }

    .process-content p{
        font-size:15px;
    }

    .process-image img{
        height:250px;
    }

    .process-btn{
        width:100%;
    }
}
/*process section*/


/* FOOTER */

.solar-footer{
    background:#021b5b;
    padding:80px 0 25px;
    color:#fff;
}

.footer-box h3{
    font-size:26px;
    font-weight:800;
    margin-bottom:28px;
}

.footer-box p{
    color:#dbe2ff;
    font-size:16px;
    line-height:1.9;
    margin:0;
}

/* CARD */

.footer-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:16px;
    padding:22px;
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.footer-card i{
    font-size:22px;
    color:#ffc400;
    margin-top:4px;
}

/* FORM */

.footer-form{
    margin-top:28px;
}

.footer-form input{
    width:100%;
    height:58px;
    border:none;
    outline:none;
    border-radius:12px;
    padding:0 18px;
    margin-bottom:15px;
    font-size:15px;
}

.footer-form button{
    width:100%;
    height:58px;
    border:none;
    border-radius:12px;
    background:#ffc400;
    color:#000;
    font-size:16px;
    font-weight:700;
    transition:0.3s;
}

.footer-form button:hover{
    background:#ffb300;
}

/* SOCIAL */

.footer-social{
    margin-top:30px;
}

.footer-social a{
    width:44px;
    height:44px;
    background:#fff;
    color:#021b5b;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    margin-right:10px;
    transition:0.3s;
}

.footer-social a:hover{
    background:#ffc400;
    color:#000;
    transform:translateY(-3px);
}

/* COPYRIGHT */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.12);
    margin-top:60px;
    padding-top:22px;
    text-align:center;
}

.footer-bottom p{
    margin:0;
    color:#cbd5e1;
    font-size:15px;
}

/* MOBILE */

@media(max-width:991px){

    .solar-footer{
        padding:65px 0 20px;
    }

    .footer-box{
        margin-bottom:10px;
    }
}

@media(max-width:576px){

    .solar-footer{
        padding:55px 0 20px;
    }

    .footer-box h3{
        font-size:22px;
    }

    .footer-box p{
        font-size:15px;
    }

    .footer-card{
        padding:18px;
    }
}