html,body{
    overflow-x:hidden;
}

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%;
}


.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");
}
.whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:linear-gradient(135deg,#25d366,#128c7e);
    color:#fff;
    text-decoration:none;
    padding:14px 24px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(37,211,102,0.35);
    transition:0.3s;
}

.whatsapp-btn i{
    font-size:28px;
}

.whatsapp-btn:hover{
    transform:translateY(-3px);
    color:#fff;
    box-shadow:0 14px 30px rgba(37,211,102,0.45);
}

@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-top:80px;
    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-top:90px;
    }

    .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-top:80px;
    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-top:90px;
    }

    .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-top:80px;
    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-top:90px;
    }

    .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-top:80px;
    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-top:90px;
    }

    .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-top:90px;
    }

    .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;
    }
}


/*about page*/
.about-hero{
    padding:100px 0 70px;
    background:#f7f9fc;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#eef4ff;
    color:#2563ff;
    padding:10px 20px;
    border-radius:50px;
    font-size:12px;
    font-weight:800;
    margin-bottom:25px;
}

.about-content h1{
    font-size:58px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:25px;
    color:#111827;
}

.about-content h1 span{
    color:#2563ff;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#6b7280;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#2563ff;
    color:#fff;
    padding:16px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

.hero-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* STATS */

.about-stats{
    background:#2563ff;
    padding:45px 0;
}

.stat-box{
    text-align:center;
    color:#fff;
}

.stat-box i{
    font-size:22px;
    margin-bottom:15px;
}

.stat-box h3{
    font-size:34px;
    font-weight:800;
}

.stat-box p{
    font-size:12px;
    letter-spacing:1px;
}

/* STORY */

.story-section{
    padding:100px 0;
    background:#fff;
}

.story-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:24px;
}

.small-title{
    color:#2563ff;
    font-size:13px;
    font-weight:800;
}

.story-content h2{
    font-size:42px;
    font-weight:800;
    margin:18px 0 20px;
}

.story-content p{
    font-size:15px;
    line-height:1.9;
    color:#6b7280;
}

.story-btns{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:30px;
}

.outline-btn{
    border:1px solid #dbe2ee;
    padding:14px 24px;
    border-radius:14px;
    text-decoration:none;
    color:#111827;
    font-weight:700;
}

/* TEAM */

.team-section{
    padding:100px 0;
    background:#f7f9fc;
}

.section-title{
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
}

.single-team{
    max-width:400px;
    margin:auto;
    text-align:center;
}

.single-team img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:25px;
}

.single-team h3{
    font-size:28px;
    font-weight:800;
}

.single-team span{
    color:#2563ff;
    font-weight:700;
}

.single-team p{
    margin-top:18px;
    color:#6b7280;
    line-height:1.9;
}

/* WHY */

.why-section{
    padding:100px 0;
    background:#fff;
}

.why-card{
    background:#f7f9fc;
    border:1px solid #e5ebf4;
    border-radius:22px;
    padding:30px;
    height:100%;
}

.why-card i{
    color:#2563ff;
    font-size:22px;
    margin-bottom:20px;
}

.why-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.why-card p{
    color:#6b7280;
    line-height:1.8;
}

/* MISSION */

.mission-section{
    padding:0 0 100px;
    background:#fff;
}

.mission-card{
    border-radius:26px;
    padding:40px;
    height:100%;
}

.blue-card{
    background:#eef4ff;
}

.yellow-card{
    background:#fff8e6;
}

.mission-card h3{
    font-size:30px;
    font-weight:800;
    margin-bottom:18px;
}

.mission-card p{
    color:#6b7280;
    line-height:1.9;
}

/* HISTORY */

.history-section{
    padding:100px 0;
    background:#f7f9fc;
}

.history-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #e5ebf4;
    height:100%;
}

.history-card h3{
    color:#2563ff;
    font-size:34px;
    font-weight:800;
}

.history-card h4{
    font-size:22px;
    font-weight:700;
    margin:14px 0;
}

.history-card p{
    color:#6b7280;
    line-height:1.8;
}

@media(max-width:991px){

    .about-content,
    .story-content{
        text-align:center;
    }

    .story-btns{
        justify-content:center;
    }

    .about-content h1{
        font-size:46px;
    }
}

@media(max-width:576px){

    .about-content h1{
        font-size:36px;
    }

    .story-content h2,
    .section-title h2{
        font-size:32px;
    }

    .hero-image img,
    .story-image img{
        height:280px;
    }

    .hero-btn,
    .outline-btn{
        width:100%;
        justify-content:center;
        text-align:center;
    }
}

/* IMPACT BANNER */

.impact-banner-section{
    padding:0 0 100px;
    background:#f7f9fc;
}

.impact-banner{
    background:linear-gradient(135deg,#2563ff,#1747ff);
    border-radius:32px;
    padding:60px;
    overflow:hidden;
    position:relative;
}

.impact-content{
    color:#fff;
}

.impact-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 18px;
    border-radius:50px;
    font-size:12px;
    font-weight:800;
    margin-bottom:25px;
}

.impact-badge i{
    color:#ffc400;
}

.impact-content h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:22px;
}

.impact-content p{
    font-size:16px;
    line-height:1.9;
    color:#dbe2ff;
    margin-bottom:35px;
    max-width:550px;
}

.impact-stat{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.18);
    padding:14px 24px;
    border-radius:16px;
    font-size:15px;
    font-weight:700;
}

.impact-stat i{
    color:#ffc400;
}

.impact-image{
    text-align:center;
}

.impact-image img{
    width:100%;
    max-width:300px;
    height:240px;
    object-fit:cover;
    border-radius:24px;
    box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

@media(max-width:991px){

    .impact-banner{
        padding:45px;
        text-align:center;
    }

    .impact-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .impact-image{
        margin-top:20px;
    }
}

@media(max-width:576px){

    .impact-banner-section{
        padding:0 0 70px;
    }

    .impact-banner{
        padding:30px 25px;
        border-radius:24px;
    }

    .impact-content h2{
        font-size:34px;
    }

    .impact-content p{
        font-size:15px;
    }

    .impact-stat{
        width:100%;
        justify-content:center;
    }

    .impact-image img{
        height:220px;
    }
}
/*about page*/


/*contact page*/
/* CONTACT HERO */

.contact-hero{
    padding:100px 0 70px;
    background:#f7f9fc;
}

.contact-hero-content{
    max-width:800px;
    margin:auto;
}

.contact-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;
}

.contact-hero h1{
    font-size:60px;
    font-weight:800;
    color:#111827;
    margin-bottom:22px;
}

.contact-hero h1 span{
    color:#2563ff;
}

.contact-hero p{
    font-size:17px;
    line-height:1.9;
    color:#6b7280;
}

/* CONTACT SECTION */

.contact-section{
    padding:100px 0;
    background:#fff;
}

.contact-info-wrapper{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-info-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    background:#f7f9fc;
    border:1px solid #e5ebf4;
    border-radius:22px;
    padding:28px;
}

.contact-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:#2563ff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-info-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.contact-info-card p{
    color:#6b7280;
    line-height:1.8;
    margin:0;
}

.contact-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:24px;
}

/* FORM */

.contact-form-wrapper{
    background:#f7f9fc;
    border:1px solid #e5ebf4;
    border-radius:28px;
    padding:45px;
}

.section-title span{
    color:#2563ff;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
}

.section-title h2{
    font-size:42px;
    font-weight:800;
    margin:15px 0 35px;
}

.form-control{
    height:58px;
    border-radius:14px;
    border:1px solid #dbe2ee;
    box-shadow:none !important;
    padding:0 18px;
    font-size:15px;
}

textarea.form-control{
    height:auto;
    padding-top:18px;
}

.form-control:focus{
    border-color:#2563ff;
}

.contact-btn{
    border:none;
    background:#2563ff;
    color:#fff;
    padding:16px 30px;
    border-radius:14px;
    font-size:16px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:0.3s;
}

.contact-btn:hover{
    background:#1747ff;
}

/* MAP */

.map-section iframe{
    width:100%;
    height:450px;
    border:0;
}

/* MOBILE */

@media(max-width:991px){

    .contact-hero h1{
        font-size:46px;
    }

    .contact-form-wrapper{
        padding:35px;
    }
}

@media(max-width:576px){

    .contact-hero{
        padding:80px 0 60px;
    }

    .contact-hero h1{
        font-size:36px;
    }

    .contact-hero p{
        font-size:15px;
    }

    .section-title h2{
        font-size:32px;
    }

    .contact-form-wrapper{
        padding:28px 22px;
    }

    .contact-info-card{
        padding:22px;
    }

    .contact-info-card h4{
        font-size:20px;
    }

    .contact-btn{
        width:100%;
        justify-content:center;
    }

    .map-section iframe{
        height:300px;
    }
}

.error-text{
    color:red;
    font-size:13px;
    margin-top:6px;
    display:block;
}

.input-error{
    border-color:red !important;
}

.input-success{
    border-color:#16a34a !important;
}
/*contact page*/

/*service page*/
/* HERO */

.service-hero{
    padding:40px 0;
    background:#f7f9fc;
}

.service-hero-content{
    max-width:760px;
    margin:auto;
}

.service-hero-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;
}

.service-hero-content h1{
    font-size:60px;
    font-weight:800;
    margin-bottom:22px;
    color:#111827;
}

.service-hero-content p{
    color:#6b7280;
    font-size:16px;
    line-height:1.9;
    margin-bottom:35px;
}

.service-hero-btn{
    display:inline-block;
    background:#2563ff;
    color:#fff;
    padding:16px 32px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:0.3s;
}

.service-hero-btn:hover{
    background:#1747ff;
    color:#fff;
}

.service-tags{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:55px;
}

.service-tags span{
    background:#fff;
    border:1px solid #e5ebf4;
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

/* STATS */

.service-stats{
    padding:30px 0;
    background:#fff;
}

.service-stat-card{
    background:#f7f9fc;
    border:1px solid #e5ebf4;
    border-radius:24px;
    padding:35px;
    text-align:center;
    transition:0.3s;
}

.service-stat-card:hover{
    transform:translateY(-5px);
}

.service-stat-card i{
    font-size:28px;
    color:#2563ff;
    margin-bottom:18px;
}

.service-stat-card h3{
    font-size:38px;
    font-weight:800;
    margin-bottom:10px;
}

.service-stat-card p{
    margin:0;
    color:#6b7280;
    font-size:13px;
    letter-spacing:1px;
}

/* TITLE */

.service-title{
    margin-bottom:60px;
}

.service-title h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:15px;
}

.service-title p{
    color:#6b7280;
    line-height:1.8;
}

/* SOLUTIONS */

.service-solutions{
    padding:30px 0;
    background:#f7f9fc;
}

.service-solution-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    border:1px solid #e5ebf4;
    transition:0.3s;
}

.service-solution-card:hover{
    transform:translateY(-6px);
}

.service-solution-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.service-solution-content{
    padding:28px;
}

.service-solution-content h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}

.service-solution-content p{
    color:#6b7280;
    line-height:1.8;
}

.service-solution-content a{
    display:inline-block;
    margin-top:18px;
    text-decoration:none;
    color:#2563ff;
    font-weight:700;
}

/* ADVANTAGE */

.service-advantage-section{
    padding:30px 0;
    background:#fff;
}

.service-advantage-box{
    background:linear-gradient(135deg,#2563ff,#5b4dff);
    padding:60px;
    border-radius:32px;
    color:#fff;
}

.service-adv-card{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:22px;
    padding:30px;
    height:100%;
}

.service-adv-card i{
    font-size:24px;
    color:#ffc400;
    margin-bottom:18px;
}

.service-adv-card h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.service-adv-card p{
    color:#dbe2ff;
    line-height:1.8;
}

/* WHY */

.service-why-section{
    padding:30px 0;
    background:#f7f9fc;
}

.service-why-image{
    position:relative;
}

.service-why-image img{
    width:100%;
    height:460px;
    object-fit:cover;
    border-radius:28px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.service-floating-card{
    position:absolute;
    left:25px;
    bottom:25px;
    background:#fff;
    border-radius:18px;
    padding:16px 20px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.service-floating-card i{
    color:#2563ff;
    font-size:22px;
}

.service-small-title{
    color:#2563ff;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
}

.service-why-content h2{
    font-size:46px;
    font-weight:800;
    margin:18px 0 22px;
}

.service-why-content p{
    color:#6b7280;
    line-height:1.9;
}

.service-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.service-feature-box{
    background:#fff;
    border:1px solid #e5ebf4;
    border-radius:18px;
    padding:22px;
    display:flex;
    gap:15px;
}

.service-feature-box i{
    color:#2563ff;
    font-size:22px;
    margin-top:5px;
}

.service-main-btn{
    display:inline-block;
    background:#2563ff;
    color:#fff;
    padding:15px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

/* JOURNEY */

.service-journey-section{
    padding:30px 0;
    background:#fff;
}

.service-journey-wrapper{
    max-width:1000px;
    margin:auto;
}

.service-journey-item{
    background:#f7f9fc;
    border:1px solid #e5ebf4;
    border-radius:24px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:25px;
    gap:20px;
}

.service-journey-left{
    width:40%;
}

.service-journey-left h4{
    font-size:24px;
    font-weight:700;
}

.service-journey-left p{
    color:#6b7280;
    line-height:1.8;
}

.service-journey-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#2563ff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.service-journey-right span{
    background:#fff;
    border:1px solid #dbe2ee;
    padding:12px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

/* WORK */

.service-work-section{
    padding:30px 0;
    background:#f7f9fc;
}

.service-work-card{
    background:#fff;
    border:1px solid #e5ebf4;
    border-radius:24px;
    padding:35px;
    text-align:center;
    height:100%;
}

.service-work-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#eef4ff;
    color:#2563ff;
    margin:auto auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.service-work-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.service-work-card p{
    color:#6b7280;
    line-height:1.8;
}

/* CTA */

.service-cta-section{
    padding:30px 0;
    background:#fff;
}

.service-cta-box{
    background:#f7f9fc;
    border:1px solid #e5ebf4;
    border-radius:32px;
    padding:70px;
}

.service-cta-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#2563ff;
    color:#fff;
    margin:auto auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
}

.service-cta-box h2{
    font-size:46px;
    font-weight:800;
    margin-bottom:20px;
}

.service-cta-box p{
    color:#6b7280;
    line-height:1.9;
    max-width:700px;
    margin:auto;
}

.service-cta-buttons{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.service-primary-btn{
    background:#2563ff;
    color:#fff;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
}

.service-secondary-btn{
    border:1px solid #dbe2ee;
    color:#111827;
    text-decoration:none;
    padding:16px 30px;
    border-radius:14px;
    font-weight:700;
}

/* MOBILE */

@media(max-width:991px){

    .service-journey-item{
        flex-direction:column;
        text-align:center;
    }

    .service-journey-left{
        width:100%;
    }

    .service-feature-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){

    .service-hero-content h1,
    .service-title h2,
    .service-why-content h2,
    .service-cta-box h2{
        font-size:34px;
    }

    .service-advantage-box,
    .service-cta-box{
        padding:35px 25px;
    }

    .service-why-image img{
        height:320px;
    }

    .service-tags{
        gap:10px;
    }

    .service-tags span{
        font-size:12px;
    }
}
/*service page*/