*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.top-header{
    background:#0b1f3a;
    color:#fff;
    font-family:Arial, sans-serif;
    font-size:14px;
    padding:10px 0;
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.left-info,
.right-info{
    display:flex;
    align-items:center;
    gap:25px;
}

.left-info span,
.right-info span{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:500;
}

.right-info{
    text-align:right;
}

/* Mobile Responsive */
@media (max-width:768px){

    .container{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .left-info{
        flex-direction:column;
        gap:6px;
    }

    .right-info{
        justify-content:center;
    }
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f5f7fa;
}

/* ===== STICKY HEADER ===== */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 3px 20px rgba(0,0,0,0.08);
    z-index:9999;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 20px;
}

/* ===== NAVBAR ===== */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:85px;
}

/* ===== LOGO ===== */
.logo img{
    height:60px;
    width:auto;
    display:block;
}

/* ===== MENU ===== */
.nav-menu{
    display:flex;
    list-style:none;
    align-items:center;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    display:block;
    padding:30px 18px;
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.nav-menu li:hover > a{
    color:#0057ff;
}

/* ===== DROPDOWN ===== */
.submenu{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#fff;
    list-style:none;
    border-radius:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.3s;
}

.submenu li a{
    padding:14px 18px;
    border-bottom:1px solid #eee;
}

.submenu li:last-child a{
    border-bottom:none;
}

.nav-menu li:hover .submenu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* ===== CTA BUTTON ===== */
.quote-btn{
    background:#0057ff;
    color:#fff !important;
    padding:12px 24px !important;
    border-radius:50px;
    margin-left:15px;
}

.quote-btn:hover{
    background:#003ec0;
    color:#fff !important;
}

/* ===== MOBILE MENU ===== */
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#0057ff;
}

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .nav-menu{
        position:absolute;
        top:85px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        display:none;
        box-shadow:0 10px 25px rgba(0,0,0,.08);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu li a{
        padding:16px 20px;
        border-bottom:1px solid #eee;
    }

    .submenu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        box-shadow:none;
        border-radius:0;
        background:#f8f9fc;
    }

    .nav-menu li:hover .submenu{
        display:block;
    }

    .quote-btn{
        margin:10px;
        text-align:center;
    }
}

/* Demo Content */
.hero{
    margin-top:85px;
    height:700px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#0b1f3a,#0057ff);
    color:#fff;
    text-align:center;
}

.hero h1{
    font-size:48px;
    font-weight:700;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    overflow-x:hidden;
}

/* =========================
   HERO SLIDER
========================= */
.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    top:100px;
    left:0;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.slide.active{
    opacity:1;
}

/* Replace with your own HD Images */
.slide1{
    background-image:url('../images/banner1.png');
}

.slide2{
     background-image:url('../images/banner2.png');
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.55) 50%,
        rgba(0,0,0,0.35) 100%
    );
}

.hero-content{
    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:750px;
    color:#fff;
    z-index:10;
}

.hero-tag{
    display:inline-block;
    background:#ffb400;
    color:#111;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:68px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#f1f1f1;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:16px 34px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    transition:.4s;
}

.btn-primary{
    background:#ffb400;
    color:#111;
}

.btn-primary:hover{
    transform:translateY(-3px);
}

.btn-outline{
    border:2px solid #fff;
    color:#fff;
}

.btn-outline:hover{
    background:#fff;
    color:#111;
}

/* Slider Dots */
.slider-dots{
    position:absolute;
    bottom:35px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:12px;
    z-index:20;
}

.dot{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
}

.dot.active{
    background:#ffb400;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:992px){

    .hero-content{
        left:5%;
        right:5%;
        max-width:100%;
    }

    .hero-content h1{
        font-size:48px;
    }
}

@media(max-width:768px){

    .hero-slider{
        height:700px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:16px;
    }
}

@media(max-width:576px){

    .hero-slider{
        height:650px;
    }

    .hero-content h1{
        font-size:30px;
    }

    .hero-tag{
        font-size:12px;
    }

    .btn{
        width:100%;
        text-align:center;
    }
}

#powercore-company-profile{
    padding:90px 20px;
    background:#f8fafc;
    font-family:'Segoe UI',sans-serif;
}

.powercore-wrap{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1.3fr 1fr;
    gap:50px;
    align-items:center;
}

.powercore-tag{
    display:inline-block;
    background:#0f172a;
    color:#fff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.powercore-left h2{
    font-size:48px;
    line-height:1.2;
    color:#111827;
    margin-bottom:25px;
    font-weight:800;
}

.powercore-left p{
    font-size:17px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:20px;
}

.powercore-features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.powercore-box{
    background:#fff;
    padding:25px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.powercore-box:hover{
    transform:translateY(-8px);
}

.powercore-icon{
    width:65px;
    height:65px;
    line-height:65px;
    margin:auto;
    border-radius:50%;
    background:#eff6ff;
    font-size:30px;
    margin-bottom:15px;
}

.powercore-box h4{
    margin-bottom:10px;
    color:#111827;
}

.powercore-box p{
    font-size:14px;
    margin:0;
}

.powercore-right{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.powercore-card{
    background:#ffffff;
    border-radius:24px;
    padding:40px 25px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.powercore-number{
    font-size:42px;
    font-weight:800;
    color:#2563eb;
    margin-bottom:10px;
}

.powercore-card span{
    color:#475569;
    font-weight:600;
    display:block;
}

@media(max-width:991px){
    .powercore-wrap{
        grid-template-columns:1fr;
    }

    .powercore-left h2{
        font-size:38px;
    }

    .powercore-features{
        grid-template-columns:1fr;
    }
}

@media(max-width:576px){
    .powercore-right{
        grid-template-columns:1fr;
    }

    .powercore-left h2{
        font-size:30px;
    }

    #powercore-company-profile{
        padding:70px 15px;
    }
}

#cta-power-strip{
    background:linear-gradient(90deg,#0f172a,#1e40af,#2563eb);
    padding:18px 15px;
    font-family:'Segoe UI',sans-serif;
}

.cta-power-wrap{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    text-align:center;
}

.cta-power-wrap span{
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.cta-power-wrap a{
    text-decoration:none;
    background:#fff;
    color:#111827;
    padding:10px 22px;
    border-radius:50px;
    font-weight:700;
    transition:.3s;
}

.cta-power-wrap a:hover{
    transform:translateY(-2px);
}

@media(max-width:768px){
    .cta-power-wrap{
        flex-direction:column;
        gap:12px;
    }

    .cta-power-wrap span{
        font-size:16px;
    }

    .cta-power-wrap a{
        width:100%;
        max-width:280px;
    }
}

#rgx-services-wrap{
    width:100%;
    padding:80px 0;
    background:#f7f9fc;
    overflow:hidden;
    font-family:'Segoe UI',sans-serif;
}

#rgx-services-head{
    text-align:center;
    max-width:900px;
    margin:auto;
    padding:0 15px 40px;
}

.rgx-mini-title{
    display:inline-block;
    background:#e8f1ff;
    color:#0056d6;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    font-size:14px;
}

#rgx-services-head h2{
    margin:15px 0;
    font-size:42px;
    color:#111;
}

#rgx-services-head p{
    color:#666;
    line-height:1.7;
}

#rgx-scroll-area{
    overflow:hidden;
    width:100%;
}

#rgx-scroll-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:rgxAutoScroll 30s linear infinite;
}

#rgx-scroll-track:hover{
    animation-play-state:paused;
}

.rgx-service-card{
    width:340px;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    flex-shrink:0;
}

.rgx-service-card:hover{
    transform:translateY(-10px);
}

.rgx-img-box{
    height:220px;
}

.rgx-img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.rgx-icon{
    width:70px;
    height:70px;
    background:#0056d6;
    color:#fff;
    margin:-35px auto 15px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    position:relative;
    z-index:2;
    border:5px solid #fff;
}

.rgx-service-card h3{
    text-align:center;
    padding:0 20px;
    font-size:24px;
    color:#111;
}

.rgx-service-card p{
    text-align:center;
    padding:10px 25px 30px;
    color:#666;
    line-height:1.7;
}

@keyframes rgxAutoScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

@media(max-width:768px){

#rgx-services-head h2{
    font-size:30px;
}

.rgx-service-card{
    width:280px;
}

.rgx-img-box{
    height:180px;
}

}


.grx-cta-wrap{
    width:100%;
    padding:40px 20px;
}

.grx-cta-box{
    max-width:1200px;
    margin:auto;
    background:linear-gradient(135deg,#0f172a,#1e293b,#2563eb);
    border-radius:24px;
    overflow:hidden;
    position:relative;
    padding:35px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

.grx-cta-box::before{
    content:'';
    position:absolute;
    width:250px;
    height:250px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-120px;
    right:-80px;
}

.grx-cta-box::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
    bottom:-90px;
    left:-70px;
}

.grx-content{
    position:relative;
    z-index:2;
    flex:1;
}

.grx-tag{
    display:inline-block;
    background:#facc15;
    color:#111827;
    font-size:13px;
    font-weight:700;
    padding:8px 18px;
    border-radius:50px;
    margin-bottom:15px;
}

.grx-title{
    color:#fff;
    font-size:clamp(28px,4vw,48px);
    font-weight:800;
    line-height:1.2;
    margin-bottom:12px;
}

.grx-desc{
    color:rgba(255,255,255,0.85);
    font-size:16px;
    line-height:1.8;
    max-width:650px;
}

.grx-btn-area{
    position:relative;
    z-index:2;
}

.grx-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#ffffff;
    color:#0f172a;
    padding:18px 32px;
    border-radius:60px;
    font-size:17px;
    font-weight:700;
    transition:0.3s;
}

.grx-btn:hover{
    transform:translateY(-4px);
}

.grx-phone{
    display:block;
    text-align:center;
    margin-top:12px;
    color:#fff;
    font-size:20px;
    font-weight:700;
}

@media(max-width:768px){

.grx-cta-box{
    flex-direction:column;
    text-align:center;
    padding:30px 20px;
}

.grx-desc{
    margin:auto;
}

.grx-btn{
    width:100%;
    justify-content:center;
}

}

.pg-review-section{
    padding:80px 20px;
    background:linear-gradient(to bottom,#ffffff,#f8fafc);
}

.pg-container{
    max-width:1400px;
    margin:auto;
}

.pg-heading{
    text-align:center;
    margin-bottom:60px;
}

.pg-badge{
    display:inline-block;
    padding:10px 20px;
    background:#e0f2fe;
    color:#0369a1;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.pg-title{
    font-size:clamp(32px,5vw,52px);
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.pg-desc{
    max-width:850px;
    margin:auto;
    color:#64748b;
    line-height:1.8;
}

.pg-grid{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:35px;
}

.pg-card{
    background:#ffffff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    border:1px solid #e2e8f0;
}

.pg-card-title{
    font-size:28px;
    font-weight:800;
    margin-bottom:25px;
    color:#0f172a;
}

.pg-review{
    background:#f8fafc;
    border-left:4px solid #2563eb;
    border-radius:15px;
    padding:20px;
    margin-bottom:18px;
}

.pg-stars{
    color:#f59e0b;
    font-size:20px;
    margin-bottom:10px;
}

.pg-review p{
    line-height:1.7;
    color:#475569;
}

.pg-review strong{
    display:block;
    margin-top:10px;
    color:#0f172a;
}

.pg-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:25px;
}

.pg-stat{
    background:#eff6ff;
    border-radius:16px;
    text-align:center;
    padding:18px;
}

.pg-stat h3{
    color:#2563eb;
    font-size:28px;
    margin-bottom:5px;
}

.pg-stat span{
    color:#475569;
    font-size:14px;
}

.pg-form{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.pg-full{
    grid-column:1/-1;
}

.pg-input,
.pg-select,
.pg-textarea{
    width:100%;
    padding:16px;
    border:1px solid #dbe2ea;
    border-radius:14px;
    background:#ffffff;
    font-size:15px;
    transition:.3s;
    outline:none;
}

.pg-input:focus,
.pg-select:focus,
.pg-textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.08);
}

.pg-textarea{
    min-height:140px;
    resize:vertical;
}

.pg-btn{
    width:100%;
    border:none;
    padding:18px;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-size:17px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.pg-btn:hover{
    transform:translateY(-3px);
}

.pg-note{
    text-align:center;
    margin-top:15px;
    color:#64748b;
    font-size:13px;
}

.pg-highlight{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    margin-top:25px;
}

.pg-highlight span{
    background:#f1f5f9;
    padding:10px 15px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    color:#334155;
}

@media(max-width:991px){

.pg-grid{
    grid-template-columns:1fr;
}

.pg-form{
    grid-template-columns:1fr;
}

.pg-card{
    padding:25px;
}

}

.vg-insights-section{
padding:100px 20px;
background:
linear-gradient(180deg,#ffffff,#f8fafc);
}

.vg-insights-container{
max-width:1400px;
margin:auto;
}

.vg-insights-head{
text-align:center;
margin-bottom:70px;
}

.vg-insights-badge{
display:inline-block;
padding:10px 20px;
background:#dbeafe;
color:#2563eb;
border-radius:50px;
font-size:13px;
font-weight:700;
margin-bottom:18px;
}

.vg-insights-head h2{
font-size:clamp(34px,5vw,60px);
font-weight:900;
color:#0f172a;
margin-bottom:15px;
}

.vg-insights-head p{
max-width:800px;
margin:auto;
line-height:1.8;
color:#64748b;
}

.vg-insights-grid{
display:grid;
grid-template-columns:2fr 1fr;
gap:30px;
margin-bottom:60px;
}

.vg-featured-card{
background:#fff;
border-radius:30px;
overflow:hidden;
box-shadow:0 20px 60px rgba(0,0,0,.08);
}

.vg-featured-image{
height:420px;
overflow:hidden;
}

.vg-featured-image img{
width:100%;
height:100%;
object-fit:cover;
transition:.6s;
}

.vg-featured-card:hover img{
transform:scale(1.05);
}

.vg-featured-content{
padding:35px;
}

.vg-tag{
background:#eff6ff;
color:#2563eb;
padding:8px 15px;
border-radius:50px;
font-size:12px;
font-weight:700;
}

.vg-featured-content h3{
font-size:34px;
margin:18px 0;
line-height:1.3;
color:#0f172a;
}

.vg-featured-content p{
line-height:1.8;
color:#64748b;
margin-bottom:20px;
}

.vg-meta{
display:flex;
gap:20px;
color:#64748b;
margin-bottom:20px;
}

.vg-btn-read{
text-decoration:none;
font-weight:700;
color:#2563eb;
}

.vg-side-posts{
display:flex;
flex-direction:column;
gap:18px;
}

.vg-mini-post{
display:flex;
align-items:center;
gap:15px;
padding:25px;
background:#fff;
border-radius:22px;
text-decoration:none;
box-shadow:0 10px 35px rgba(0,0,0,.05);
transition:.3s;
}

.vg-mini-post:hover{
transform:translateX(8px);
}

.vg-mini-icon{
width:60px;
height:60px;
display:flex;
align-items:center;
justify-content:center;
background:#eff6ff;
border-radius:18px;
font-size:28px;
}

.vg-mini-post span{
font-size:13px;
font-weight:700;
color:#2563eb;
}

.vg-mini-post h4{
margin-top:8px;
font-size:17px;
color:#0f172a;
line-height:1.4;
}

.vg-trending-title{
font-size:28px;
font-weight:800;
margin-bottom:25px;
color:#0f172a;
}

.vg-trending-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.vg-trend-card{
background:#fff;
border-radius:25px;
overflow:hidden;
box-shadow:0 12px 35px rgba(0,0,0,.06);
transition:.4s;
}

.vg-trend-card:hover{
transform:translateY(-8px);
}

.vg-card-img{
height:240px;
overflow:hidden;
}

.vg-card-img img{
width:100%;
height:100%;
object-fit:cover;
}

.vg-card-body{
padding:25px;
}

.vg-card-body span{
display:inline-block;
background:#eff6ff;
color:#2563eb;
padding:7px 14px;
border-radius:50px;
font-size:12px;
font-weight:700;
margin-bottom:15px;
}

.vg-card-body h3{
font-size:22px;
line-height:1.5;
margin-bottom:15px;
color:#0f172a;
}

.vg-card-body a{
text-decoration:none;
font-weight:700;
color:#2563eb;
}

@media(max-width:991px){

.vg-insights-grid{
grid-template-columns:1fr;
}

.vg-trending-grid{
grid-template-columns:1fr;
}

.vg-featured-image{
height:280px;
}

}

.power-strip{
    padding:22px 15px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed,
        #ec4899,
        #f97316
    );
    background-size:300% 300%;
    animation:gradientMove 8s ease infinite;
}

.power-strip-content{
    max-width:1400px;
    margin:auto;
    text-align:center;
    color:#ffffff;
    font-size:clamp(16px,2vw,24px);
    font-weight:700;
    line-height:1.6;
}

@keyframes gradientMove{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}

@media(max-width:768px){

.power-strip{
    padding:18px 12px;
}

.power-strip-content{
    font-size:16px;
    line-height:1.8;
}

}

.future-footer{

background:
linear-gradient(135deg,#020617,#0f172a,#1e293b);

position:relative;
overflow:hidden;
padding:0;
}

.future-footer::before{
content:'';
position:absolute;
width:500px;
height:500px;
background:rgba(37,99,235,.12);
border-radius:50%;
top:-250px;
left:-150px;
filter:blur(80px);
}

.future-footer::after{
content:'';
position:absolute;
width:400px;
height:400px;
background:rgba(14,165,233,.10);
border-radius:50%;
right:-150px;
bottom:-150px;
filter:blur(90px);
}

.future-footer-top{

position:relative;
z-index:2;

max-width:1400px;
margin:auto;

display:grid;
grid-template-columns:2fr 1fr 1fr 1.3fr;

gap:50px;

padding:90px 20px 60px;
}

.future-logo{

font-size:34px;
font-weight:900;
color:#ffffff;
margin-bottom:20px;

}

.future-brand p{

color:#94a3b8;
line-height:1.9;
max-width:420px;

}

.future-social{

display:flex;
gap:12px;
margin-top:25px;

}

.future-social a{

width:48px;
height:48px;

display:flex;
align-items:center;
justify-content:center;

border-radius:14px;

background:rgba(255,255,255,.08);

backdrop-filter:blur(12px);

color:#fff;
text-decoration:none;
font-weight:700;

transition:.3s;

}

.future-social a:hover{

background:#2563eb;
transform:translateY(-4px);

}

.future-links h4,
.future-contact h4{

font-size:20px;
color:#fff;
margin-bottom:22px;

}

.future-links{

display:flex;
flex-direction:column;

}

.future-links a{

color:#94a3b8;
text-decoration:none;
margin-bottom:14px;
transition:.3s;

}

.future-links a:hover{

color:#fff;
padding-left:6px;

}

.contact-item{

color:#94a3b8;
margin-bottom:16px;
line-height:1.8;

}

.future-btn{

display:inline-block;
margin-top:15px;

padding:14px 24px;

background:linear-gradient(135deg,#2563eb,#0ea5e9);

color:#fff;
text-decoration:none;
font-weight:700;

border-radius:60px;

transition:.3s;

}

.future-btn:hover{

transform:translateY(-3px);

}

.future-footer-bottom{

position:relative;
z-index:2;

max-width:1400px;
margin:auto;

border-top:1px solid rgba(255,255,255,.08);

padding:25px 20px;

display:flex;
justify-content:space-between;
align-items:center;
gap:20px;

flex-wrap:wrap;

color:#94a3b8;

}

.future-policy{

display:flex;
gap:25px;
flex-wrap:wrap;

}

.future-policy a{

color:#94a3b8;
text-decoration:none;

}

.future-policy a:hover{

color:#fff;

}

@media(max-width:1100px){

.future-footer-top{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.future-footer-top{

grid-template-columns:1fr;
gap:40px;

padding:70px 20px 40px;

}

.future-footer-bottom{

flex-direction:column;
text-align:center;

}

.future-policy{

justify-content:center;

}

.future-logo{

font-size:28px;

}

}


.cp-about-section{
    padding:100px 5%;
    background:#f8fafc;
    overflow:hidden;
}

.cp-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.cp-tag{
    display:inline-block;
    background:#e8f1ff;
    color:#0066ff;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
}

.cp-about-left h2{
    font-size:48px;
    line-height:1.2;
    color:#0f172a;
    margin-bottom:25px;
    font-weight:700;
}

.cp-about-left p{
    font-size:17px;
    line-height:1.8;
    color:#64748b;
    margin-bottom:20px;
}

.cp-features{
    margin-top:35px;
}

.cp-feature{
    display:flex;
    gap:18px;
    background:#fff;
    padding:20px;
    border-radius:16px;
    margin-bottom:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.cp-feature span{
    font-size:32px;
}

.cp-feature h4{
    margin-bottom:6px;
    color:#0f172a;
}

.cp-feature p{
    margin:0;
    font-size:15px;
}

.cp-btn{
    display:inline-block;
    margin-top:20px;
    padding:15px 35px;
    background:linear-gradient(135deg,#0066ff,#00b4ff);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cp-btn:hover{
    transform:translateY(-3px);
}

.cp-about-right{
    position:relative;
}

.cp-image-box img{
    width:100%;
    border-radius:30px;
    display:block;
}

.cp-counter-box{
    position:absolute;
    bottom:30px;
    left:-30px;
    background:#fff;
    padding:25px 35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

.cp-counter-box h3{
    font-size:42px;
    color:#0066ff;
}

.cp-counter-box p{
    color:#64748b;
    font-size:15px;
}

@media(max-width:991px){

.cp-container{
    grid-template-columns:1fr;
}

.cp-about-left h2{
    font-size:36px;
}

.cp-counter-box{
    left:20px;
    bottom:20px;
}
}

@media(max-width:576px){

.cp-about-section{
    padding:70px 20px;
}

.cp-about-left h2{
    font-size:30px;
}

.cp-feature{
    flex-direction:column;
}

.cp-counter-box{
    position:relative;
    margin-top:20px;
    left:0;
    bottom:0;
}
}

.about-banner{
    position:relative;
    min-height:500px;
    display:flex;

    align-items:center;
    justify-content:center;
    text-align:center;
    padding:120px 20px;
    overflow:hidden;

    background:url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1920&q=80') center center/cover no-repeat;
}

.about-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(0,0,0,0.80),
        rgba(0,102,255,0.55)
    );
}

.about-content{
    position:relative;
    z-index:2;
    max-width:900px;
}

.about-tag{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.25);
    border-radius:50px;
    color:#fff;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:25px;
}

.about-content h1{
    font-size:60px;
    color:#fff;
    line-height:1.15;
    font-weight:800;
    margin-bottom:20px;
}

.about-content p{
    color:rgba(255,255,255,0.9);
    font-size:18px;
    line-height:1.8;
    max-width:750px;
    margin:auto;
    margin-bottom:30px;
}

.about-breadcrumb{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    padding:12px 25px;
    border-radius:50px;
}

.about-breadcrumb a,
.about-breadcrumb span{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
}

/* Tablet */
@media (max-width:991px){

.about-banner{
    min-height:450px;
}

.about-content h1{
    font-size:46px;
}

.about-content p{
    font-size:17px;
}
}

/* Mobile */
@media (max-width:768px){

.about-banner{
    min-height:400px;
    padding:100px 20px;
}

.about-content h1{
    font-size:34px;
}

.about-content p{
    font-size:15px;
}

.about-breadcrumb{
    flex-wrap:wrap;
}
}

/* Small Mobile */
@media (max-width:480px){

.about-content h1{
    font-size:28px;
}

.about-tag{
    font-size:12px;
    padding:8px 18px;
}
}

.mini-stats{
    background:#062a63;
    padding:20px;
}

.mini-stats-wrap{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.mini-stat-box{
    height:120px;
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:18px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:.3s;
}

.mini-stat-box:hover{
    transform:translateY(-5px);
    background:rgba(255,255,255,0.12);
}

.mini-stat-box h3{
    font-size:42px;
    color:#fff;
    font-weight:800;
    line-height:1;
    margin-bottom:8px;
}

.mini-stat-box p{
    color:rgba(255,255,255,.8);
    font-size:15px;
    text-align:center;
}

/* Tablet */
@media(max-width:991px){
    .mini-stats-wrap{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media(max-width:576px){
    .mini-stats-wrap{
        grid-template-columns:1fr;
    }

    .mini-stat-box{
        height:100px;
    }

    .mini-stat-box h3{
        font-size:34px;
    }

    .mini-stat-box p{
        font-size:14px;
    }
}

.core-services{
    padding:90px 5%;
    background:#f4f6f9;
}

.container{
    max-width:1400px;
    margin:auto;
}

.section-header{
    text-align:center;
    margin-bottom:60px;
}

.section-header h2{
    font-size:52px;
    font-weight:800;
    color:#08285d;
    margin-bottom:12px;
}

.section-header p{
    font-size:18px;
    color:#6c757d;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    min-height:290px;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,0.10);
}

.service-icon{
    font-size:42px;
    margin-bottom:25px;
}

.service-card h3{
    font-size:30px;
    color:#111827;
    margin-bottom:18px;
    font-weight:700;
}

.service-card p{
    font-size:17px;
    line-height:1.8;
    color:#4b5563;
}

/* Tablet */
@media(max-width:1200px){

.services-grid{
    grid-template-columns:repeat(2,1fr);
}

.section-header h2{
    font-size:42px;
}

}

/* Mobile */
@media(max-width:768px){

.core-services{
    padding:70px 20px;
}

.services-grid{
    grid-template-columns:1fr;
}

.section-header h2{
    font-size:34px;
}

.service-card{
    min-height:auto;
    padding:30px;
}

.service-card h3{
    font-size:24px;
}

.service-card p{
    font-size:15px;
}

}

.mvv-section{
    padding:100px 5%;
    background:#f8fafc;
}

.mvv-container{
    max-width:1400px;
    margin:auto;
}

.mvv-heading{
    text-align:center;
    margin-bottom:60px;
}

.mvv-heading span{
    display:inline-block;
    color:#0d6efd;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.mvv-heading h2{
    font-size:48px;
    font-weight:800;
    color:#08285d;
    margin-bottom:15px;
}

.mvv-heading p{
    max-width:700px;
    margin:auto;
    color:#6b7280;
    font-size:18px;
    line-height:1.8;
}

.mvv-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.mvv-card{
    background:#fff;
    padding:45px 35px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:all .4s ease;
    position:relative;
    overflow:hidden;
}

.mvv-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0d6efd,#00c6ff);
}

.mvv-card:hover{
    transform:translateY(-10px);
}

.mvv-icon{
    width:80px;
    height:80px;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:25px;
}

.mvv-card h3{
    font-size:30px;
    color:#08285d;
    margin-bottom:20px;
    font-weight:700;
}

.mvv-card p{
    color:#555;
    line-height:1.9;
    font-size:16px;
}

.mvv-card ul{
    list-style:none;
    padding:0;
}

.mvv-card ul li{
    padding:12px 0;
    border-bottom:1px solid #edf2f7;
    color:#555;
    font-size:16px;
}

.mvv-card ul li:last-child{
    border-bottom:none;
}

/* Tablet */
@media(max-width:991px){

.mvv-grid{
    grid-template-columns:1fr;
}

.mvv-heading h2{
    font-size:38px;
}

}

/* Mobile */
@media(max-width:576px){

.mvv-section{
    padding:70px 20px;
}

.mvv-heading h2{
    font-size:30px;
}

.mvv-heading p{
    font-size:15px;
}

.mvv-card{
    padding:35px 25px;
}

.mvv-card h3{
    font-size:24px;
}

.mvv-icon{
    width:65px;
    height:65px;
    font-size:30px;
}

}
.why-choose-us{
    padding:100px 5%;
    background:#ffffff;
}

.wcu-container{
    max-width:1400px;
    margin:auto;
}

.wcu-header{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.wcu-header span{
    display:inline-block;
    color:#0d6efd;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    margin-bottom:15px;
}

.wcu-header h2{
    font-size:48px;
    color:#08285d;
    font-weight:800;
    margin-bottom:15px;
}

.wcu-header p{
    color:#6b7280;
    line-height:1.8;
    font-size:17px;
}

.wcu-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.wcu-card{
    background:#f8fafc;
    border-radius:20px;
    padding:35px;
    transition:all .4s ease;
    border:1px solid #e5e7eb;
}

.wcu-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.wcu-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:linear-gradient(135deg,#0d6efd,#00bfff);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.wcu-card h3{
    font-size:24px;
    color:#08285d;
    margin-bottom:12px;
    font-weight:700;
}

.wcu-card p{
    color:#555;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */
@media(max-width:991px){

.wcu-grid{
    grid-template-columns:repeat(2,1fr);
}

.wcu-header h2{
    font-size:38px;
}

}

/* Mobile */
@media(max-width:768px){

.why-choose-us{
    padding:70px 20px;
}

.wcu-grid{
    grid-template-columns:1fr;
}

.wcu-header h2{
    font-size:30px;
}

.wcu-card{
    padding:30px;
}

}

.about-cta{
    padding:40px 5%;
    background:linear-gradient(135deg,#08285d,#0d6efd);
}

.cta-container{
    max-width:1400px;
    margin:auto;
}

.cta-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.cta-content h2{
    color:#fff;
    font-size:34px;
    font-weight:700;
    line-height:1.4;
    margin:0;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 35px;
    background:#fff;
    color:#08285d;
    text-decoration:none;
    border-radius:50px;
    font-weight:700;
    white-space:nowrap;
    transition:.3s;
}

.cta-btn:hover{
    transform:translateY(-3px);
    background:#f5f5f5;
}

/* Tablet */
@media(max-width:991px){

.cta-content{
    flex-direction:column;
    text-align:center;
}

.cta-content h2{
    font-size:28px;
}

}

/* Mobile */
@media(max-width:576px){

.about-cta{
    padding:35px 20px;
}

.cta-content h2{
    font-size:22px;
}

.cta-btn{
    width:100%;
    max-width:280px;
}
}

.modern-copyright{
    background:#020b1c;
    padding:25px 20px;
}

.copyright-wrap{
    max-width:1400px;
    margin:auto;
    text-align:center;
}

.copyright-line{
    width:80px;
    height:3px;
    margin:0 auto 18px;
    border-radius:30px;
    background:linear-gradient(90deg,#00c6ff,#0072ff);
}

.modern-copyright p{
    margin:0;
    color:rgba(255,255,255,.75);
    font-size:15px;
    font-weight:500;
    letter-spacing:.5px;
}

.modern-copyright span{
    color:#ffffff;
    font-weight:700;
}

/* Mobile */
@media(max-width:768px){

.modern-copyright{
    padding:20px 15px;
}

.modern-copyright p{
    font-size:13px;
    line-height:1.8;
}

}

.contact-form-section{
padding:100px 5%;
background:#f8fafc;
}

.container{
max-width:1400px;
margin:auto;
}

.section-title{
text-align:center;
max-width:750px;
margin:auto;
margin-bottom:60px;
}

.section-title span{
display:inline-block;
color:#0d6efd;
font-weight:700;
letter-spacing:2px;
margin-bottom:15px;
}

.section-title h2{
font-size:52px;
font-weight:800;
color:#08285d;
margin-bottom:15px;
}

.section-title p{
color:#6b7280;
line-height:1.8;
font-size:17px;
}

.contact-wrapper{
display:grid;
grid-template-columns:380px 1fr;
gap:35px;
}

.contact-info{
display:flex;
flex-direction:column;
gap:20px;
}

.info-card{
background:#fff;
padding:25px;
border-radius:20px;
display:flex;
gap:15px;
align-items:flex-start;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.3s;
}

.info-card:hover{
transform:translateY(-5px);
}

.icon{
font-size:28px;
}

.info-card h4{
margin-bottom:5px;
color:#08285d;
}

.info-card p{
color:#666;
font-size:15px;
}

.contact-form{
background:#fff;
padding:40px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
margin-bottom:15px;
}

input,
select,
textarea{
width:100%;
padding:16px;
border:1px solid #dbe3eb;
border-radius:12px;
font-size:15px;
outline:none;
margin-bottom:15px;
transition:.3s;
}

input:focus,
select:focus,
textarea:focus{
border-color:#0d6efd;
}

textarea{
height:160px;
resize:none;
}

button{
background:linear-gradient(135deg,#0d6efd,#00c6ff);
border:none;
color:#fff;
padding:16px 35px;
border-radius:50px;
font-size:15px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

button:hover{
transform:translateY(-3px);
}

/* Tablet */
@media(max-width:991px){

.contact-wrapper{
grid-template-columns:1fr;
}

}

/* Mobile */
@media(max-width:768px){

.contact-form-section{
padding:70px 20px;
}

.section-title h2{
font-size:34px;
}

.form-grid{
grid-template-columns:1fr;
}

.contact-form{
padding:25px;
}

}

.contact-hero-v1{
    position:relative;
	
    width:100%;
    min-height:90vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:
    linear-gradient(rgba(4,16,38,.75),
    rgba(4,16,38,.85)),
    url('https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80');
    background-size:cover;
    background-position:center;
}

.contact-hero-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:
    radial-gradient(circle at top right,
    rgba(0,212,255,.25),
    transparent 40%);
}

.contact-hero-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
    position:relative;
    z-index:2;
}

.contact-badge{
    display:inline-block;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    color:#fff;
    padding:12px 24px;
    border-radius:50px;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:25px;
    border:1px solid rgba(255,255,255,.15);
}

.contact-hero-content h1{
    font-size:clamp(2.8rem,6vw,5rem);
    color:#fff;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.contact-hero-content p{
    color:rgba(255,255,255,.85);
    font-size:18px;
    line-height:1.8;
    max-width:700px;
}

.contact-hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;
}

.btn-primary-contact{
    text-decoration:none;
    background:#00c6ff;
    color:#fff;
    padding:16px 35px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.btn-primary-contact:hover{
    transform:translateY(-4px);
}

.btn-outline-contact{
    text-decoration:none;
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
    padding:16px 35px;
    border-radius:60px;
    font-weight:600;
    transition:.4s;
}

.btn-outline-contact:hover{
    background:#fff;
    color:#111;
}

.contact-stats{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:45px;
}

.contact-stat-box{
    min-width:140px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.1);
    padding:25px;
    border-radius:18px;
    text-align:center;
}

.contact-stat-box h3{
    color:#00d4ff;
    font-size:28px;
    margin-bottom:8px;
}

.contact-stat-box span{
    color:#fff;
    font-size:14px;
}

.contact-hero-card{
    display:flex;
    justify-content:center;
}

.floating-contact-card{
    width:100%;
    max-width:380px;
    padding:40px;
    border-radius:30px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    text-align:center;
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.icon-circle{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#00d4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:40px;
    margin-bottom:25px;
}

.floating-contact-card h3{
    font-size:28px;
    margin-bottom:15px;
}

.floating-contact-card p{
    line-height:1.8;
    opacity:.9;
    margin-bottom:25px;
}

.whatsapp-btn{
    display:inline-block;
    text-decoration:none;
    background:#25D366;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;
}

@media(max-width:991px){

.contact-hero-container{
    grid-template-columns:1fr;
    text-align:center;
}

.contact-hero-content p{
    margin:auto;
}

.contact-hero-buttons{
    justify-content:center;
}

.contact-stats{
    justify-content:center;
}

.contact-hero-v1{
    padding:100px 0;
}
}

@media(max-width:576px){

.contact-hero-content h1{
    font-size:2.4rem;
}

.contact-stat-box{
    width:100%;
}

.contact-hero-buttons a{
    width:100%;
}

.floating-contact-card{
    padding:30px 25px;
}
}

:root{
    --map-radius:32px;
}

.modern-map-section{
    padding:60px 20px;
    background:
    linear-gradient(
    180deg,
    #f8fbff 0%,
    #ffffff 100%);
}

.modern-map-wrapper{
    position:relative;
    max-width:1400px;
    margin:auto;
    border-radius:var(--map-radius);
    overflow:hidden;
    background:#ffffff;
    padding:12px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.06),
    0 25px 80px rgba(0,0,0,0.08);

    border:1px solid rgba(255,255,255,0.7);
}

.map-glow{
    position:absolute;
    top:-100px;
    right:-100px;
    width:250px;
    height:250px;
    background:linear-gradient(
    135deg,
    rgba(0,153,255,.35),
    rgba(0,255,204,.25));
    filter:blur(80px);
    z-index:1;
}

.modern-map-wrapper iframe{
    position:relative;
    z-index:2;
    width:100%;
    height:650px;
    border:none;
    border-radius:24px;
    display:block;
}

/* Tablet */
@media (max-width:992px){

.modern-map-wrapper iframe{
    height:500px;
}

}

/* Mobile */
@media (max-width:576px){

.modern-map-section{
    padding:30px 10px;
}

.modern-map-wrapper{
    padding:8px;
    border-radius:22px;
}

.modern-map-wrapper iframe{
    height:350px;
    border-radius:16px;
}

}

.quote-btn{
    padding:16px 35px;
    background:linear-gradient(135deg,#ff6b00,#ff9500);
    color:#fff;
    text-decoration:none;
    border:none;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.quote-btn:hover{
    transform:translateY(-3px);
}

.popup{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#fff;
    width:90%;
    max-width:450px;
    padding:30px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    display:none;
    z-index:1000;
}

.popup h3{
    color:#28a745;
    margin-bottom:15px;
}

.popup p{
    color:#555;
    line-height:1.6;
}

.popup button{
    margin-top:20px;
    padding:10px 25px;
    border:none;
    background:#ff6b00;
    color:#fff;
    border-radius:30px;
    cursor:pointer;
}

.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.5);
    display:none;
    z-index:999;
}



header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:9999;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.container{
    width:95%;
    max-width:1400px;
    margin:auto;
}

.navbar{
    height:85px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:#0f172a;
    text-decoration:none;
}

.logo span{
    color:#2563eb;
}

/* MENU */

.nav-menu{
    display:flex;
    align-items:center;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#111827;
    padding:30px 16px;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-menu li:hover > a{
    color:#2563eb;
}

/* DROPDOWN */

.submenu{
    position:absolute;
    left:0;
    top:120%;
    min-width:280px;
    background:#fff;
    list-style:none;

    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

    padding:12px 0;

    opacity:0;
    visibility:hidden;

    transition:.3s;

    max-height:350px;
    overflow-y:auto;
}

/* SCROLLBAR */

.submenu::-webkit-scrollbar{
    width:6px;
}

.submenu::-webkit-scrollbar-thumb{
    background:#2563eb;
    border-radius:20px;
}

.nav-menu li:hover .submenu{
    opacity:1;
    visibility:visible;
    top:100%;
}

.submenu li a{
    padding:12px 22px;
    color:#64748b;
    font-size:14px;
    display:block;
}

.submenu li a:hover{
    background:#f8fafc;
    color:#2563eb;
    padding-left:28px;
}

/* CTA BUTTON */

.quote-btn{
    margin-left:10px;
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    color:#fff!important;
    padding:12px 24px!important;
    border-radius:30px;
}

/* MOBILE */

.mobile-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

@media(max-width:991px){

    .mobile-toggle{
        display:block;
    }

    .nav-menu{
        position:fixed;
        top:85px;
        right:-100%;
        width:320px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        overflow-y:auto;
        transition:.4s;
        padding:20px;
        box-shadow:-10px 0 30px rgba(0,0,0,.08);
    }

    .nav-menu.active{
        right:0;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu li a{
        width:100%;
        padding:15px;
        justify-content:space-between;
    }

    .submenu{
        position:static;
        opacity:1;
        visibility:visible;
        display:none;
        box-shadow:none;
        border-radius:0;
        max-height:250px;
        width:100%;
        padding-left:10px;
    }

    .dropdown.active .submenu{
        display:block;
    }
}


.about-modern{
padding:100px 5%;
background:linear-gradient(135deg,#f8fafc,#eef4ff);
}

.container{
max-width:1400px;
margin:auto;
}

/* TITLE */

.section-top{
text-align:center;
margin-bottom:70px;
}

.tag{
display:inline-block;
background:#2563eb;
color:#fff;
padding:10px 22px;
border-radius:50px;
font-size:14px;
font-weight:600;
margin-bottom:20px;
}

.section-top h2{
font-size:52px;
font-weight:800;
color:#0f172a;
line-height:1.2;
margin-bottom:20px;
}

.section-top h2 span{
color:#2563eb;
}

.section-top p{
max-width:800px;
margin:auto;
color:#64748b;
line-height:1.9;
}

/* MAIN GRID */

.about-grid{
display:grid;
grid-template-columns:1.2fr .8fr;
gap:50px;
align-items:center;
}

/* LEFT */

.content-box{
background:#fff;
padding:50px;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.06);
}

.content-box h3{
font-size:32px;
margin-bottom:25px;
color:#0f172a;
}

.content-box p{
color:#64748b;
line-height:2;
margin-bottom:20px;
}

/* FEATURES */

.features{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:20px;
margin-top:35px;
}

.feature{
display:flex;
gap:15px;
padding:20px;
border-radius:18px;
background:#f8fafc;
transition:.4s;
}

.feature:hover{
transform:translateY(-5px);
background:#eff6ff;
}

.feature i{
width:55px;
height:55px;
border-radius:15px;
background:#2563eb;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-size:20px;
}

.feature h4{
font-size:17px;
margin-bottom:5px;
}

.feature p{
font-size:14px;
margin:0;
}

/* RIGHT SIDE */

.stats-column{
display:flex;
flex-direction:column;
gap:25px;
}

.stat-card{
background:#fff;
padding:35px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
position:relative;
overflow:hidden;
transition:.4s;
}

.stat-card:hover{
transform:translateX(10px);
}

.stat-card::before{
content:'';
position:absolute;
left:0;
top:0;
width:6px;
height:100%;
background:#2563eb;
}

.stat-card h2{
font-size:50px;
font-weight:800;
color:#2563eb;
margin-bottom:8px;
}

.stat-card p{
font-size:15px;
font-weight:600;
color:#334155;
}

/* RESPONSIVE */

@media(max-width:991px){

.about-grid{
grid-template-columns:1fr;
}

.section-top h2{
font-size:40px;
}

}

@media(max-width:768px){

.about-modern{
padding:70px 20px;
}

.content-box{
padding:30px;
}

.features{
grid-template-columns:1fr;
}

.section-top h2{
font-size:32px;
}

.stat-card h2{
font-size:38px;
}

}



.generator-btn{
    position:relative;
    display:flex;
    align-items:center;
    gap:15px;
    width:max-content;
    padding:16px 30px;
    border-radius:70px;
    text-decoration:none;
    color:#fff;
    overflow:hidden;

    background:linear-gradient(
    135deg,
    #0f172a,
    #1d4ed8,
    #06b6d4);

    box-shadow:0 15px 40px rgba(37,99,235,.35);

    animation:floating 4s ease-in-out infinite;
}

/* Shine */

.generator-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-120%;
    width:60%;
    height:100%;

    background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.4),
    transparent);

    animation:shine 3s linear infinite;
}

/* Status */

.status-dot{
    position:absolute;
    top:12px;
    right:12px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#00ff88;
    animation:blink 1s infinite;
}

/* Generator */

.generator-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;

    animation:vibration .2s infinite alternate;
}

/* Text */

.btn-content small{
    display:block;
    font-size:11px;
    letter-spacing:1px;
    opacity:.8;
}

.btn-content strong{
    display:block;
    font-size:17px;
    margin-top:2px;
}

/* Power Flow */

.power-flow{
    width:180px;
    height:4px;
    background:rgba(255,255,255,.15);
    border-radius:30px;
    overflow:hidden;
    margin-top:8px;
}

.power-flow span{
    display:block;
    width:40%;
    height:100%;
    background:#00ff88;
    animation:electricity 1s linear infinite;
}

/* Bolt */

.power-icon{
    font-size:26px;
    color:#ffd700;
    animation:flash .8s infinite;
}

/* Hover */

.generator-btn:hover{
    transform:scale(1.05);
    box-shadow:0 25px 60px rgba(37,99,235,.5);
}

/* Animations */

@keyframes electricity{
    from{
        transform:translateX(-120%);
    }
    to{
        transform:translateX(400%);
    }
}

@keyframes vibration{
    from{
        transform:translateX(-1px);
    }
    to{
        transform:translateX(1px);
    }
}

@keyframes flash{
    50%{
        opacity:.4;
        transform:scale(1.2);
    }
}

@keyframes blink{
    50%{
        opacity:.3;
    }
}

@keyframes shine{
    from{
        left:-100%;
    }
    to{
        left:200%;
    }
}

@keyframes floating{
    50%{
        transform:translateY(-8px);
    }
}

/* Mobile */

@media(max-width:768px){

.generator-btn{
    padding:12px 18px;
    gap:10px;
}

.generator-icon{
    width:45px;
    height:45px;
    font-size:18px;
}

.btn-content strong{
    font-size:14px;
}

.power-flow{
    width:100px;
}

.power-icon{
    font-size:20px;
}

}


.form-card{
background:#fff;
border-radius:25px;


padding:40px;
box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.form-title{
text-align:center;
margin-bottom:30px;
}

.form-title h2{
font-size:36px;
color:#003366;
}

.row{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-bottom:20px;
}

.input-group{
display:flex;
flex-direction:column;
}

label{
font-weight:600;
margin-bottom:8px;
color:#333;
}

input,
select,
textarea{
padding:14px 16px;
border:1px solid #ddd;
border-radius:12px;
outline:none;
font-size:15px;
transition:.3s;
}

input:focus,
select:focus,
textarea:focus{
border-color:#0066ff;
box-shadow:0 0 10px rgba(0,102,255,.2);
}

textarea{
height:120px;
resize:none;
}

.btn{
width:100%;
padding:16px;
border:none;
background:linear-gradient(135deg,#0066ff,#0047b3);
color:#fff;
font-size:18px;
font-weight:600;
border-radius:12px;
cursor:pointer;
transition:.3s;
}

.btn:hover{
transform:translateY(-3px);
}

@media(max-width:768px){

.hero h1{
font-size:36px;
}

.row{
grid-template-columns:1fr;
}

.form-card{
padding:25px;
}
}


/* ===== CAREER HERO SECTION ===== */

#careerHero2026{
    position:relative;
    width:100%;
    min-height:100vh;
	
    overflow:hidden;
    display:flex;
    align-items:center;
    background:linear-gradient(135deg,#001f4d,#004aad,#00c6ff);
    font-family:'Poppins',sans-serif;
}

.careerContainer2026{
    max-width:1400px;
    margin:auto;
    width:100%;
    padding:50px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    z-index:2;
}

/* LEFT CONTENT */

.careerContent2026 h5{
    display:inline-block;
    background:rgba(255,255,255,0.15);
    color:#fff;
    padding:10px 22px;
    border-radius:40px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
    animation:pulseHiring 2s infinite;
}

.careerContent2026 h1{
    color:#fff;
    font-size:68px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.careerContent2026 h1 span{
    color:#ffd500;
}

.careerContent2026 p{
    color:#e8f1ff;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:35px;
}

.careerBtnWrap2026{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.careerApplyBtn2026{
    background:#ffd500;
    color:#000;
    padding:16px 35px;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:.4s;
}

.careerApplyBtn2026:hover{
    transform:translateY(-5px);
}

.careerViewBtn2026{
    border:2px solid #fff;
    color:#fff;
    padding:16px 35px;
    text-decoration:none;
    border-radius:50px;
    transition:.4s;
}

.careerViewBtn2026:hover{
    background:#fff;
    color:#004aad;
}

/* RIGHT SIDE */

.careerVisual2026{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.careerCircle2026{
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(255,255,255,0.1);
    backdrop-filter:blur(20px);
    display:flex;
    align-items:center;
    justify-content:center;
    animation:floatCircle 6s ease-in-out infinite;
}

.careerCircle2026 i{
    font-size:180px;
    color:#fff;
}

/* FLOATING ICONS */

.careerIcon2026{
    position:absolute;
    width:80px;
    height:80px;
    background:white;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    animation:floatingIcons 5s infinite ease-in-out;
}

.careerIcon2026 i{
    font-size:35px;
    color:#004aad;
}

.iconOne2026{
    top:50px;
    left:30px;
}

.iconTwo2026{
    top:100px;
    right:40px;
    animation-delay:1s;
}

.iconThree2026{
    bottom:80px;
    left:40px;
    animation-delay:2s;
}

.iconFour2026{
    bottom:50px;
    right:50px;
    animation-delay:3s;
}

/* BACKGROUND PARTICLES */

.careerParticle2026{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    animation:particleMove 15s linear infinite;
}

.particle1{
    width:120px;
    height:120px;
    top:10%;
    left:5%;
}

.particle2{
    width:200px;
    height:200px;
    bottom:5%;
    right:10%;
}

.particle3{
    width:70px;
    height:70px;
    top:60%;
    left:15%;
}

/* ANIMATIONS */

@keyframes floatCircle{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-20px);
    }
}

@keyframes floatingIcons{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
}

@keyframes pulseHiring{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.05);
    }
    100%{
        transform:scale(1);
    }
}

@keyframes particleMove{
    0%{
        transform:translateY(0px) rotate(0deg);
    }
    100%{
        transform:translateY(-100px) rotate(360deg);
    }
}

/* RESPONSIVE */

@media(max-width:991px){

.careerContainer2026{
    grid-template-columns:1fr;
    text-align:center;
}

.careerContent2026 h1{
    font-size:48px;
}

.careerBtnWrap2026{
    justify-content:center;
}

.careerCircle2026{
    width:350px;
    height:350px;
}

.careerCircle2026 i{
    font-size:120px;
}
}

@media(max-width:576px){

.careerContent2026 h1{
    font-size:36px;
}

.careerContent2026 p{
    font-size:16px;
}

.careerCircle2026{
    width:280px;
    height:280px;
}

.careerCircle2026 i{
    font-size:90px;
}
}

#careerIntroModern{
    position:relative;
    padding:120px 20px;
    overflow:hidden;
    background:
    radial-gradient(circle at top right,#0ea5e920,transparent 35%),
    radial-gradient(circle at bottom left,#2563eb15,transparent 40%),
    #ffffff;
}

#careerIntroModern .careerIntroContainer{
    max-width:900px;
    margin:auto;
    text-align:center;
}

#careerIntroModern .careerBadge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 28px;
    border-radius:50px;
    background:#eef6ff;
    border:1px solid #d8e9ff;
    color:#2563eb;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

#careerIntroModern .careerTitle{
    font-size:clamp(36px,6vw,68px);
    line-height:1.1;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
    letter-spacing:-1px;
}

#careerIntroModern .careerTitle span{
    background:linear-gradient(135deg,#2563eb,#06b6d4);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

#careerIntroModern .careerDescription{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
    max-width:750px;
    margin:auto;
}

@media(max-width:768px){

#careerIntroModern{
    padding:80px 20px;
}

#careerIntroModern .careerDescription{
    font-size:16px;
    line-height:1.8;
}

}


/* ===================================
   GALLERY PAGE SECTION
=================================== */


body{
    background:#f7f9fc;
    overflow-x:hidden;
}


#galleryPageSection{
    padding:100px 5%;
    position:relative;
	
}

/* Decorative Background */

#galleryPageSection::before{
    content:'';
    position:absolute;
    top:0;
    left:-150px;
    width:100%;
    height:400px;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
    border-radius:50%;
    filter:blur(180px);
    opacity:.08;
}

#galleryPageSection::after{
    content:'';
    position:absolute;
    bottom:0;
    right:-150px;
    width:450px;
    height:450px;
    background:linear-gradient(135deg,#8b5cf6,#ec4899);
    border-radius:50%;
    filter:blur(180px);
    opacity:.08;
}

/* Header */

#galleryPageHeader{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

#galleryPageBadge{
    display:inline-block;
    padding:12px 24px;
    background:#ffffff;
    border-radius:60px;
    color:#2563eb;
    font-weight:600;
    font-size:14px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

#galleryPageTitle{
    font-size:60px;
    font-weight:800;
    color:#0f172a;
    margin-top:25px;
    line-height:1.1;
}

#galleryPageText{
    margin-top:20px;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

/* Filters */

#galleryFilterWrap{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:60px;
}

.galleryFilterBtn{
    border:none;
    background:#fff;
    padding:15px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    color:#334155;
    cursor:pointer;
    transition:.4s;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.galleryFilterBtn:hover,
.galleryFilterBtn.active{
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
    transform:translateY(-3px);
}

/* Bento Grid */

#galleryGridArea{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:250px;
    gap:25px;
}

/* Cards */

.galleryCardBox{
    position:relative;
    overflow:hidden;
    border-radius:32px;
    background:#fff;
    box-shadow:0 15px 45px rgba(15,23,42,.08);
    transition:.5s;
}

.galleryCardBox img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.galleryCardBox:hover{
    transform:translateY(-10px);
}

.galleryCardBox:hover img{
    transform:scale(1.1);
}

.galleryCardBox::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(0,0,0,.8),
    rgba(0,0,0,.15),
    transparent);
    opacity:0;
    transition:.5s;
}

.galleryCardBox:hover::before{
    opacity:1;
}

/* Overlay */

.galleryOverlayContent{
    position:absolute;
    left:30px;
    right:30px;
    bottom:25px;
    z-index:2;
    color:#fff;
    transform:translateY(40px);
    transition:.5s;
    opacity:0;
}

.galleryCardBox:hover .galleryOverlayContent{
    transform:translateY(0);
    opacity:1;
}

.galleryOverlayTitle{
    font-size:26px;
    font-weight:700;
}

.galleryOverlayText{
    margin-top:8px;
    color:#e2e8f0;
}

/* Sizes */

.galleryLargeVertical{
    grid-row:span 2;
}

.galleryLargeHorizontal{
    grid-column:span 2;
}

.galleryLargeBox{
    grid-column:span 2;
    grid-row:span 2;
}

/* Floating Tag */

.galleryCategoryTag{
    position:absolute;
    top:20px;
    right:20px;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(10px);
    color:#0f172a;
    padding:10px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    z-index:3;
}

/* Responsive */

@media(max-width:1200px){

#galleryGridArea{
    grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:991px){

#galleryPageTitle{
    font-size:46px;
}

#galleryGridArea{
    grid-template-columns:repeat(2,1fr);
}

.galleryLargeBox,
.galleryLargeHorizontal{
    grid-column:span 1;
}

}

@media(max-width:768px){

#galleryPageSection{
    padding:80px 20px;
}

#galleryPageTitle{
    font-size:36px;
}

#galleryGridArea{
    grid-template-columns:1fr;
}

.galleryLargeVertical,
.galleryLargeHorizontal,
.galleryLargeBox{
    grid-column:auto;
    grid-row:auto;
}

}
/* ================= HERO ================= */
#solarHero{
    position:relative;
    width:100%;
    min-height:100vh;
	
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:60px 8%;
    background:linear-gradient(-45deg,#07121f,#0c2a3a,#0b1220,#123b2a);
    background-size:400% 400%;
    animation:bgFlow 10s ease infinite;
    color:#fff;
}

/* animated background */
@keyframes bgFlow{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* glowing particles */
#solarHero::before,
#solarHero::after{
    content:"";
    position:absolute;
    width:340px;
    height:340px;
    background:rgba(0,255,170,0.08);
    border-radius:50%;
    filter:blur(70px);
    animation:floatGlow 6s infinite alternate;
}

#solarHero::before{top:8%; left:5%;}
#solarHero::after{bottom:10%; right:8%;}

@keyframes floatGlow{
    from{transform:translateY(0);}
    to{transform:translateY(50px);}
}

/* ================= LEFT CONTENT ================= */
#solarContent{
    flex:1;
    z-index:2;
}

/* badge */
#solarBadge{
    display:inline-block;
    padding:8px 14px;
    font-size:12px;
    letter-spacing:1px;
    color:#00ffb3;
    background:rgba(0,255,179,0.08);
    border:1px solid rgba(0,255,179,0.3);
    border-radius:20px;
    margin-bottom:18px;
    backdrop-filter:blur(10px);
}

/* title */
#solarTitle{
    font-size:56px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:18px;
    background:linear-gradient(90deg,#ffffff,#00ffb3);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

#solarTitle span{
    color:#00ffb3;
    -webkit-text-fill-color:#00ffb3;
}

/* description */
#solarDesc{
    font-size:16px;
    color:#b9c9d6;
    max-width:600px;
    line-height:1.7;
    margin-bottom:20px;
}

/* feature chips */
#solarChips{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:25px;
}

#solarChips span{
    font-size:13px;
    padding:8px 12px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:30px;
    color:#cfe8e0;
    backdrop-filter:blur(8px);
    transition:0.3s;
}

#solarChips span:hover{
    transform:translateY(-3px);
    border-color:#00ffb3;
    color:#00ffb3;
}

/* button */
#solarBtn{
    display:inline-block;
    padding:14px 28px;
    background:#00ffb3;
    color:#001a12;
    font-weight:600;
    border-radius:8px;
    text-decoration:none;
    transition:0.3s;
    box-shadow:0 0 20px rgba(0,255,179,0.4);
}

#solarBtn:hover{
    transform:scale(1.05);
    box-shadow:0 0 35px rgba(0,255,179,0.7);
}

/* ================= RIGHT VISUAL ================= */
#solarVisual{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:2;
}

/* ================= LARGE 3D CUBE ================= */
#solarCube{
    width:320px;
    height:320px;
    position:relative;
    transform-style:preserve-3d;
    animation:rotateCube 10s linear infinite;
}

#solarCube div{
    position:absolute;
    width:320px;
    height:320px;
    background-size:cover;
    background-position:center;
    border:2px solid rgba(0,255,179,0.4);
    opacity:0.9;
}

/* cube faces */
#face1{transform:rotateY(0deg) translateZ(160px); background-image:url('https://images.unsplash.com/photo-1466611653911-95081537e5b7');}
#face2{transform:rotateY(90deg) translateZ(160px); background-image:url('https://images.unsplash.com/photo-1509391366360-2e959784a276');}
#face3{transform:rotateY(180deg) translateZ(160px); background-image:url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d');}
#face4{transform:rotateY(-90deg) translateZ(160px); background-image:url('https://images.unsplash.com/photo-1503376780353-7e6692767b70');}

@keyframes rotateCube{
    0%{transform:rotateY(0deg) rotateX(10deg);}
    100%{transform:rotateY(360deg) rotateX(10deg);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    #solarHero{
        flex-direction:column;
        text-align:center;
        padding:40px 6%;
    }

    #solarTitle{
        font-size:38px;
    }

    #solarVisual{
        margin-top:40px;
    }

    #solarChips{
        justify-content:center;
    }
}

:root{

    --solar-primary:#00ff95;
    --solar-secondary:#00d4ff;

    --solar-white:#ffffff;
    --solar-light:#f8fafc;
    --solar-text:#dbe4f0;

    --solar-card:#08101f;
}

body{

    font-family:'Inter',sans-serif;

    background:#020617;

    overflow-x:hidden;
}

/*==================================
SOLAR SERVICES SECTION
==================================*/

#solarEnergyHub{

    position:relative;

    padding:120px 5%;

    overflow:hidden;

    background:
    linear-gradient(
    rgba(2,6,23,.92),
    rgba(2,6,23,.90)
    ),

    url('https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=2200&q=80');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* Glow Effects */

#solarEnergyHub::before{

    content:"";

    position:absolute;

    width:550px;
    height:550px;

    left:-250px;
    top:-200px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(0,255,149,.15),
    transparent 70%
    );
}

#solarEnergyHub::after{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    right:-300px;
    bottom:-300px;

    border-radius:50%;

    background:
    radial-gradient(
    rgba(0,212,255,.12),
    transparent 70%
    );
}

/*==================================
HEADER
==================================*/

#solarEnergyHeader{

    position:relative;
    z-index:5;

    max-width:1000px;

    margin:auto;
    margin-bottom:70px;

    text-align:center;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:30px;

    padding:50px;
}

#solarEnergyBadge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    color:var(--solar-primary);

    font-weight:600;

    margin-bottom:25px;
}

#solarEnergyHeader h2{

    font-size:clamp(2.8rem,5vw,5rem);

    line-height:1.1;

    font-weight:900;

    color:#fff;

    letter-spacing:-2px;

    margin-bottom:20px;

    text-shadow:
    0 3px 25px rgba(0,0,0,.4);
}

#solarEnergyHeader p{

    max-width:850px;

    margin:auto;

    font-size:18px;

    line-height:1.9;

    color:#f1f5f9;
}

/*==================================
GRID
==================================*/

#solarEnergyGrid{

    position:relative;
    z-index:5;

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(340px,1fr));

    gap:30px;
}

/*==================================
CARD
==================================*/

.solarEnergyCard{

    position:relative;

    background:rgba(8,16,31,.94);

    backdrop-filter:blur(18px);

    border-radius:28px;

    overflow:hidden;

    padding:35px;

    border:1px solid rgba(255,255,255,.08);

    transition:.4s ease;

    box-shadow:
    0 20px 40px rgba(0,0,0,.30);
}

.solarEnergyCard:hover{

    transform:translateY(-12px);

    border-color:var(--solar-primary);

    box-shadow:
    0 20px 60px rgba(0,255,149,.15);
}

/* Top Neon Line */

.solarEnergyCard::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:
    linear-gradient(
    90deg,
    var(--solar-primary),
    var(--solar-secondary)
    );
}

/* Number */

.solarEnergyNumber{

    position:absolute;

    top:20px;
    right:20px;

    font-size:70px;

    font-weight:900;

    color:rgba(255,255,255,.04);
}

/* Icon */

.solarEnergyIcon{

    width:85px;
    height:85px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    var(--solar-primary),
    var(--solar-secondary)
    );

    color:#fff;

    font-size:32px;

    margin-bottom:25px;
}

/* Content */

.solarEnergyCard h3{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

    line-height:1.4;
}

.solarEnergyCard p{

    color:#dbe4f0;

    font-size:16px;

    line-height:1.9;

    margin-bottom:25px;
}

.solarEnergyBtn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    color:var(--solar-primary);

    font-weight:600;
}

.solarEnergyBtn i{

    transition:.3s;
}

.solarEnergyCard:hover .solarEnergyBtn i{

    transform:translateX(5px);
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

    #solarEnergyHub{

        padding:90px 30px;
    }

    #solarEnergyHeader{

        padding:35px;
    }

}

@media(max-width:768px){

    #solarEnergyHub{

        padding:70px 20px;

        background-attachment:scroll;
    }

    #solarEnergyGrid{

        grid-template-columns:1fr;
    }

    #solarEnergyHeader{

        padding:30px 20px;
    }

    #solarEnergyHeader h2{

        font-size:2.4rem;

        letter-spacing:-1px;
    }

    #solarEnergyHeader p{

        font-size:16px;
    }

    .solarEnergyCard{

        padding:30px;
    }

    .solarEnergyNumber{

        font-size:55px;
    }

}


/*=========================
 SOLAR2 INDUSTRIES SECTION
=========================*/

#solar2-industries-section{
    padding:120px 20px;
    background:
    radial-gradient(circle at top left,
    rgba(0,208,132,.08),
    transparent 35%),
    radial-gradient(circle at bottom right,
    rgba(14,165,233,.08),
    transparent 35%),
    #fff;
    overflow:hidden;
}

#solar2-industries-container{
    max-width:1400px;
    margin:auto;
}

#solar2-industries-header{
    text-align:center;
    margin-bottom:70px;
}

#solar2-industries-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:100px;
    background:#ecfdf5;
    color:var(--solar2-primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:20px;
}

#solar2-industries-title{
    font-size:clamp(2.5rem,5vw,4.8rem);
    font-weight:800;
    color:var(--solar2-dark);
    line-height:1.1;
    margin-bottom:18px;
}

#solar2-industries-title span{
    background:linear-gradient(90deg,
    var(--solar2-primary),
    var(--solar2-secondary));
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

#solar2-industries-description{
    max-width:760px;
    margin:auto;
    color:var(--solar2-text);
    line-height:1.9;
    font-size:1.05rem;
}

/* GRID */

#solar2-industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

/* CARD */

.solar2-industry-card{
    position:relative;
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.8);
    border-radius:30px;
    padding:35px 25px;
    text-align:center;
    overflow:hidden;
    transition:.45s ease;
    box-shadow:
    0 15px 40px rgba(15,23,42,.05);
}

.solar2-industry-card:hover{
    transform:translateY(-10px);
    box-shadow:
    0 25px 60px rgba(15,23,42,.10);
}

.solar2-industry-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,
    var(--solar2-primary),
    var(--solar2-secondary));
}

.solar2-industry-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    margin-bottom:22px;

    background:linear-gradient(
    135deg,
    rgba(0,208,132,.12),
    rgba(14,165,233,.12)
    );
}

.solar2-industry-name{
    font-size:1.15rem;
    color:var(--solar2-dark);
    font-weight:700;
    line-height:1.5;
}

/* Hover Glow */

.solar2-industry-card::after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:
    radial-gradient(circle,
    rgba(0,208,132,.15),
    transparent);
    top:-80px;
    right:-80px;
    opacity:0;
    transition:.4s;
}

.solar2-industry-card:hover::after{
    opacity:1;
}

/* Tablet */

@media(max-width:1100px){

#solar2-industries-grid{
    grid-template-columns:repeat(3,1fr);
}

}

/* Tablet Small */

@media(max-width:768px){

#solar2-industries-grid{
    grid-template-columns:repeat(2,1fr);
}

#solar2-industries-section{
    padding:90px 15px;
}

}

/* Mobile */

@media(max-width:520px){

#solar2-industries-grid{
    grid-template-columns:1fr;
}

#solar2-industries-title{
    font-size:2.2rem;
}

.solar2-industry-card{
    padding:30px 20px;
}

}


:root{
    --solar2-primary:#00d084;
    --solar2-secondary:#0ea5e9;
    --solar2-dark:#0f172a;
    --solar2-text:#64748b;
    --solar2-border:#e2e8f0;
    --solar2-bg:#f8fafc;
    --solar2-card:#ffffff;
}



#solar-benefits-hub{
    position:relative;
    padding:100px 20px;
    background:
    radial-gradient(circle at top right,
    rgba(255,193,7,.18),
    transparent 35%),
    radial-gradient(circle at bottom left,
    rgba(0,255,170,.12),
    transparent 35%),
    #07111f;
    overflow:hidden;
}

#solar-benefits-wrapper{
    max-width:1350px;
    margin:auto;
}

#solar-benefits-heading{
    text-align:center;
    margin-bottom:70px;
}

#solar-benefits-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 20px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:100px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);
    color:#ffcc33;
    font-size:13px;
    letter-spacing:2px;
    font-weight:600;
}

#solar-benefits-heading h2{
    font-size:clamp(2.2rem,5vw,4.2rem);
    color:#fff;
    margin:25px 0 15px;
    line-height:1.1;
    font-weight:800;
}

#solar-benefits-heading p{
    max-width:750px;
    margin:auto;
    color:#9fb0c3;
    font-size:1.05rem;
    line-height:1.8;
}

/* ===========================
   GRID
=========================== */

#solar-benefits-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:28px;
}

/* ===========================
   CARDS
=========================== */

.solar-benefit-tile{
    position:relative;
    padding:35px;
    border-radius:28px;
    background:rgba(255,255,255,.05);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    overflow:hidden;
    transition:.45s ease;
}

.solar-benefit-tile::before{
    content:"";
    position:absolute;
    inset:0;
    padding:1px;
    border-radius:28px;
    background:
    linear-gradient(
    135deg,
    rgba(255,193,7,.9),
    rgba(0,255,170,.7));
    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

.solar-benefit-tile:hover{
    transform:translateY(-12px);
}

.solar-benefit-number{
    font-size:3rem;
    font-weight:800;
    line-height:1;
    margin-bottom:25px;
    background:linear-gradient(135deg,#ffd54f,#00ffb3);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.solar-benefit-tile h3{
    color:#ffffff;
    font-size:1.4rem;
    margin-bottom:15px;
    font-weight:700;
}

.solar-benefit-tile p{
    color:#aebfd1;
    line-height:1.8;
    font-size:15px;
}

/* Glow Effect */

.solar-benefit-tile::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,193,7,.15);
    top:-60px;
    right:-60px;
    filter:blur(50px);
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:768px){

    #solar-benefits-hub{
        padding:70px 15px;
    }

    #solar-benefits-grid{
        grid-template-columns:1fr;
    }

    .solar-benefit-tile{
        padding:28px;
    }

    .solar-benefit-number{
        font-size:2.5rem;
    }
}

/* ===========================
   SMART MONITORING SECTION
=========================== */

#solar-monitoring-section{
    position:relative;
    overflow:hidden;
    padding:100px 5%;
    background:
    radial-gradient(circle at top left,rgba(34,197,94,.12),transparent 35%),
    radial-gradient(circle at bottom right,rgba(59,130,246,.12),transparent 35%),
    linear-gradient(135deg,#ffffff,#f8fafc,#eff6ff);
}

#solar-monitoring-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* LEFT CONTENT */

#solar-monitoring-content{
    position:relative;
}

#solar-monitoring-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:50px;
    background:#ecfdf5;
    color:#16a34a;
    font-size:14px;
    font-weight:700;
    border:1px solid #bbf7d0;
    margin-bottom:25px;
}

#solar-monitoring-content h2{
    font-size:56px;
    line-height:1.1;
    color:#0f172a;
    font-weight:800;
    margin-bottom:25px;
}

#solar-monitoring-content p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

#solar-monitoring-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.solar-monitoring-feature{
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    background:#ffffff;
    border-radius:20px;
    border:1px solid #e2e8f0;
    box-shadow:0 12px 35px rgba(15,23,42,.05);
    transition:.4s ease;
}

.solar-monitoring-feature:hover{
    transform:translateY(-6px);
    border-color:#22c55e;
    box-shadow:0 18px 40px rgba(34,197,94,.12);
}

.solar-monitoring-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:linear-gradient(135deg,#22c55e,#38bdf8);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#fff;
    flex-shrink:0;
}

.solar-monitoring-feature span{
    color:#0f172a;
    font-size:15px;
    font-weight:600;
}

/* RIGHT DASHBOARD */

#solar-monitoring-dashboard{
    position:relative;
}

#solar-monitoring-panel{
    background:rgba(255,255,255,.85);
    backdrop-filter:blur(20px);
    border:1px solid #e2e8f0;
    border-radius:32px;
    padding:30px;
    box-shadow:0 25px 60px rgba(15,23,42,.08);
}

#solar-monitoring-topbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

#solar-monitoring-dots{
    display:flex;
    gap:8px;
}

#solar-monitoring-dots span{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#cbd5e1;
}

#solar-monitoring-live{
    color:#16a34a;
    font-size:14px;
    font-weight:700;
}

#solar-monitoring-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.solar-monitoring-stat{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:22px;
    padding:22px;
}

.solar-monitoring-stat h5{
    color:#64748b;
    font-size:14px;
    margin-bottom:8px;
    font-weight:600;
}

.solar-monitoring-stat h3{
    color:#0f172a;
    font-size:30px;
    font-weight:800;
}

/* ANALYTICS CHART */

#solar-monitoring-chart{
    height:220px;
    display:flex;
    align-items:flex-end;
    gap:12px;
    margin-top:35px;
}

.solar-monitoring-bar{
    flex:1;
    border-radius:20px 20px 0 0;
    background:linear-gradient(to top,#22c55e,#38bdf8);
    animation:solarChartAnimation 3s infinite alternate;
}

.solar-monitoring-bar:nth-child(1){height:55%;}
.solar-monitoring-bar:nth-child(2){height:75%;}
.solar-monitoring-bar:nth-child(3){height:95%;}
.solar-monitoring-bar:nth-child(4){height:80%;}
.solar-monitoring-bar:nth-child(5){height:100%;}
.solar-monitoring-bar:nth-child(6){height:70%;}

@keyframes solarChartAnimation{
    from{
        opacity:.7;
        transform:scaleY(.95);
    }
    to{
        opacity:1;
        transform:scaleY(1);
    }
}

/* FLOATING CARD */

#solar-monitoring-floating{
    position:absolute;
    right:-30px;
    bottom:40px;
    background:#ffffff;
    border:1px solid #e2e8f0;
    border-radius:20px;
    padding:16px 22px;
    box-shadow:0 15px 40px rgba(15,23,42,.1);
    animation:solarFloat 4s ease-in-out infinite;
}

#solar-monitoring-floating h4{
    color:#16a34a;
    font-size:24px;
    font-weight:800;
}

#solar-monitoring-floating p{
    color:#64748b;
    font-size:13px;
}

@keyframes solarFloat{
    50%{
        transform:translateY(-10px);
    }
}

/* RESPONSIVE */

@media(max-width:1100px){

    #solar-monitoring-container{
        grid-template-columns:1fr;
    }

    #solar-monitoring-content h2{
        font-size:46px;
    }

    #solar-monitoring-floating{
        right:20px;
    }
}

@media(max-width:768px){

    #solar-monitoring-section{
        padding:70px 20px;
    }

    #solar-monitoring-content h2{
        font-size:34px;
    }

    #solar-monitoring-feature-grid{
        grid-template-columns:1fr;
    }

    #solar-monitoring-stats{
        grid-template-columns:1fr;
    }

    #solar-monitoring-floating{
        position:relative;
        right:auto;
        bottom:auto;
        margin-top:20px;
    }
}


/* ====================================
   V1 POWERGEN MOBILE RESPONSIVE FIX
   ==================================== */

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    width:100%;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    width:100%;
    overflow-x:hidden;
    font-family:Arial, Helvetica, sans-serif;
}

/* Images */
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* Videos */
video,
iframe{
    max-width:100%;
    height:auto;
}

/* Containers */
.container,
.wrapper,
.section-container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}

/* Grid Fix */
.row{
    display:flex;
    flex-wrap:wrap;
}

[class*="col"]{
    width:100%;
}

/* Tables */
table{
    width:100%;
    display:block;
    overflow-x:auto;
    white-space:nowrap;
}

/* Forms */
input,
select,
textarea,
button{
    width:100%;
    max-width:100%;
}

/* Long Text */
p,
h1,
h2,
h3,
h4,
h5,
h6{
    word-wrap:break-word;
}

/* Prevent Horizontal Scroll */
section,
div,
article,
main{
    max-width:100%;
}

/* ====================================
   LARGE TABLET
   ==================================== */

@media (max-width:1200px){

    .container,
    .wrapper{
        padding-left:25px;
        padding-right:25px;
    }

}

/* ====================================
   TABLET
   ==================================== */

@media (max-width:991px){

    h1{
        font-size:42px !important;
    }

    h2{
        font-size:34px !important;
    }

    h3{
        font-size:28px !important;
    }

    section{
        padding:70px 25px !important;
    }

    /* Two Columns Become One */

    .hero-section,
    .about-section,
    .service-section,
    .industry-section,
    .monitoring-section,
    .contact-section{
        display:flex;
        flex-direction:column;
        gap:30px;
    }

    .hero-left,
    .hero-right,
    .about-left,
    .about-right,
    .service-left,
    .service-right{
        width:100% !important;
    }

}

/* ====================================
   MOBILE
   ==================================== */

@media (max-width:768px){

    body{
        overflow-x:hidden;
    }

    section{
        padding:60px 20px !important;
    }

    h1{
        font-size:34px !important;
        line-height:1.2;
    }

    h2{
        font-size:28px !important;
        line-height:1.3;
    }

    h3{
        font-size:22px !important;
    }

    p{
        font-size:16px !important;
        line-height:1.8;
    }

    /* Navigation */

    .navbar,
    .header{
        padding:15px 20px;
    }

    .nav-menu{
        display:none;
    }

    .mobile-menu-btn{
        display:flex;
    }

    /* Hero Section */

    .hero-section{
        flex-direction:column;
        text-align:center;
    }

    .hero-content{
        width:100%;
        order:2;
    }

    .hero-image{
        width:100%;
        order:1;
        margin-bottom:30px;
    }

    .hero-image img{
        max-width:450px;
        margin:auto;
    }

    /* Buttons */

    .btn,
    .primary-btn,
    .secondary-btn{
        width:100%;
        justify-content:center;
        margin-bottom:15px;
    }

    /* Grid Layouts */

    .services-grid,
    .industry-grid,
    .project-grid,
    .gallery-grid,
    .blog-grid,
    .feature-grid,
    .stats-grid,
    .monitoring-grid{
        display:grid;
        grid-template-columns:1fr !important;
        gap:20px;
    }

    /* Cards */

    .card,
    .service-card,
    .industry-card,
    .feature-card{
        padding:25px;
    }

    /* Contact */

    .contact-wrapper{
        display:flex;
        flex-direction:column;
    }

    .contact-form,
    .contact-info{
        width:100%;
    }

    /* Footer */

    .footer-grid{
        display:grid;
        grid-template-columns:1fr !important;
        gap:30px;
        text-align:center;
    }

}

/* ====================================
   SMALL MOBILE
   ==================================== */

@media (max-width:576px){

    h1{
        font-size:28px !important;
    }

    h2{
        font-size:24px !important;
    }

    h3{
        font-size:20px !important;
    }

    p{
        font-size:15px !important;
    }

    section{
        padding:50px 15px !important;
    }

    .container,
    .wrapper{
        padding-left:15px;
        padding-right:15px;
    }

    .card,
    .service-card,
    .industry-card{
        padding:20px;
    }

    .hero-image img{
        max-width:100%;
    }

}

/* ====================================
   EXTRA SMALL DEVICES
   ==================================== */

@media (max-width:380px){

    h1{
        font-size:24px !important;
    }

    h2{
        font-size:20px !important;
    }

    p{
        font-size:14px !important;
    }

    .btn{
        font-size:14px;
        padding:12px 20px;
    }

}

/* ====================================
   FIX OVERFLOW ELEMENTS
   ==================================== */

.hero-image,
.service-card,
.industry-card,
.monitoring-card,
.gallery-item{
    overflow:hidden;
}

.hero-image img,
.gallery-item img{
    width:100%;
    height:auto;
}

/* ====================================
   FLEX FIXES
   ==================================== */

.flex{
    display:flex;
    flex-wrap:wrap;
}

.flex > *{
    max-width:100%;
}

/* ====================================
   CSS GRID FIXES
   ==================================== */

.grid{
    display:grid;
}

@media(max-width:768px){

    .grid{
        grid-template-columns:1fr !important;
    }

}

/* ====================================
   MOBILE SAFE WIDTH
   ==================================== */

body *{
    max-width:100%;
}

/* ====================================
   VIEWPORT HEIGHT FIX
   ==================================== */

.hero-section{
    min-height:auto;
}

/* ====================================
   END
   ==================================== */
   
   
   
   /* =================================
   V1 POWERGEN RESPONSIVE HEADER
   ================================= */

.header{
    position:sticky;
    top:0;
    z-index:99999;
    background:#fff;
    width:100%;
}

.navbar{
    min-height:85px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.navbar img{
    max-height:60px;
    width:auto;
}

.mobile-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
    color:#2563eb;
    user-select:none;
}

/* Desktop Menu */

.nav-menu{
    display:flex;
    align-items:center;
    list-style:none;
    gap:0;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:30px 14px;
    text-decoration:none;
}

/* =================================
   TABLET + MOBILE
   ================================= */

@media (max-width:991px){

    .mobile-toggle{
        display:block;
        z-index:100001;
    }

    .nav-menu{
        position:fixed;
        top:85px;
        left:-100%;
        width:100%;
        height:calc(100vh - 85px);
        overflow-y:auto;

        background:#ffffff;

        flex-direction:column;
        align-items:flex-start;

        transition:.35s ease;

        padding:20px 0;

        z-index:99998;
    }

    .nav-menu.active{
        left:0;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu li a{
        width:100%;
        padding:16px 24px;
        border-bottom:1px solid #edf2f7;
    }

    .submenu{
        position:static !important;
        opacity:1 !important;
        visibility:visible !important;
        transform:none !important;
        display:none;
        width:100%;
        box-shadow:none;
        border-radius:0;
        max-height:none;
        background:#f8fafc;
    }

    .dropdown.active .submenu{
        display:block;
    }

    .submenu li a{
        padding-left:40px !important;
        font-size:14px;
    }

    .quote-btn{
        width:calc(100% - 30px);
        margin:15px;
        text-align:center;
    }
}

/* =================================
   MOBILE DEVICES
   ================================= */

@media (max-width:768px){

    .top-header .container{
        flex-direction:column;
        gap:8px;
        text-align:center;
    }

    .left-info,
    .right-info{
        width:100%;
        justify-content:center;
    }

    .navbar{
        min-height:75px;
    }

    .nav-menu{
        top:75px;
        height:calc(100vh - 75px);
    }

    h1{
        font-size:clamp(30px,6vw,42px) !important;
        line-height:1.15;
    }

    h2{
        font-size:clamp(24px,5vw,34px) !important;
    }

    p{
        font-size:15px;
    }
}

/* =================================
   HERO FIX
   ================================= */

.hero-slider{
    min-height:100vh;
}

.slide{
    top:0 !important;
}

.hero-content{
    width:min(90%,700px);
    left:5%;
}

.hero-content h1{
    font-size:clamp(32px,7vw,70px);
    line-height:1.1;
}

.hero-content p{
    font-size:clamp(15px,2vw,18px);
}

/* =================================
   GRID FIXES
   ================================= */

.services-grid,
.industry-grid,
.project-grid,
.gallery-grid,
.blog-grid,
.monitoring-grid,
.feature-grid,
.footer-grid{
    display:grid;
    gap:25px;
}

@media (max-width:768px){

    .services-grid,
    .industry-grid,
    .project-grid,
    .gallery-grid,
    .blog-grid,
    .monitoring-grid,
    .feature-grid,
    .footer-grid{
        grid-template-columns:1fr !important;
    }
}

/* =================================
   GLOBAL RESPONSIVE FIX
   ================================= */

html,
body{
    overflow-x:hidden;
}

img,
video,
iframe{
    max-width:100%;
    height:auto;
}

.container{
    width:100%;
    max-width:1400px;
    margin:auto;
    padding-left:20px;
    padding-right:20px;
}

*{
    box-sizing:border-box;
}

/* ===== MOBILE FIXES ADDED ===== */
.mobile-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    color:#0057ff;
    z-index:10001;
}

@media(max-width:991px){
    .mobile-toggle{
        display:block !important;
    }

    .navbar{
        min-height:85px;
    }

    .nav-menu{
        max-height:calc(100vh - 85px);
        overflow-y:auto;
        z-index:9999;
    }

    .submenu{
        width:100%;
    }

    img{
        max-width:100%;
        height:auto;
    }

    .hero-content{
        width:90%;
    }
}

html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}



/* ==========================
TOP BAR
========================== */

#v1-topbar{
background:#0f172a;
color:#fff;
font-size:14px;
}

.v1-container{
width:100%;
max-width:1400px;
margin:auto;
padding:0 20px;
}

.v1-top-inner{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 0;
flex-wrap:wrap;
gap:10px;
}

.v1-top-left,
.v1-top-right{
display:flex;
align-items:center;
gap:20px;
flex-wrap:wrap;
}

.v1-top-inner a{
color:#fff;
text-decoration:none;
}

/* ==========================
HEADER
========================== */

#v1-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:99999;
    background:rgba(255,255,255,0.98);
    backdrop-filter:blur(15px);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.v1-navbar{
display:flex;
align-items:center;
justify-content:space-between;
height:90px;
}

.v1-logo img{
height:65px;
display:block;
}

/* ==========================
MENU
========================== */

.v1-menu{
display:flex;
align-items:center;
list-style:none;
gap:5px;
}

.v1-menu li{
position:relative;
}

.v1-menu a{
display:flex;
align-items:center;
gap:6px;
padding:12px 16px;
text-decoration:none;
font-size:15px;
font-weight:600;
color:#1e293b;
transition:.3s;
}

.v1-menu a:hover{
color:#16a34a;
}

/* ==========================
DROPDOWN
========================== */

.v1-submenu{
position:absolute;
top:100%;
left:0;
min-width:260px;
background:#fff;
list-style:none;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,.15);
opacity:0;
visibility:hidden;
transform:translateY(15px);
transition:.3s;
overflow:hidden;
}

.v1-submenu li a{
padding:14px 18px;
display:block;
font-size:14px;
border-bottom:1px solid #f1f5f9;
}

.v1-dropdown:hover .v1-submenu{
opacity:1;
visibility:visible;
transform:translateY(0);
}

/* ==========================
BUTTON
========================== */

.v1-right{
display:flex;
align-items:center;
gap:15px;
}

.v1-quote-btn{
padding:13px 28px;
border:none;
cursor:pointer;
border-radius:50px;
font-weight:700;
font-size:15px;
background:linear-gradient(135deg,#22c55e,#16a34a);
color:#fff;
transition:.3s;
}

.v1-quote-btn:hover{
transform:translateY(-2px);
}

/* ==========================
MOBILE TOGGLE
========================== */

#v1-mobile-btn{
display:none;
font-size:30px;
border:none;
background:none;
cursor:pointer;
}

/* ==========================
POPUP
========================== */

.overlay{
position:fixed;
inset:0;
background:rgba(0,0,0,.5);
display:none;
z-index:99998;
}

.popup{
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:#fff;
width:90%;
max-width:420px;
padding:30px;
border-radius:20px;
text-align:center;
display:none;
z-index:99999;
box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.popup h3{
margin-bottom:15px;
color:#16a34a;
}

.popup p{
line-height:1.7;
margin-bottom:20px;
}

.popup button{
padding:12px 25px;
border:none;
background:#16a34a;
color:#fff;
border-radius:30px;
cursor:pointer;
}

/* ==========================
RESPONSIVE
========================== */

@media(max-width:1200px){

.v1-menu a{
padding:10px 12px;
font-size:14px;
}

}

@media(max-width:991px){

.v1-navbar{
height:80px;
}

#v1-mobile-btn{
display:block;
}

.v1-quote-btn{
display:none;
}

.v1-nav{
position:fixed;
top:80px;
right:-100%;
width:320px;
height:calc(100vh - 80px);
background:#fff;
overflow-y:auto;
transition:.4s;
box-shadow:-5px 0 20px rgba(0,0,0,.15);
}

.v1-nav.active{
right:0;
}

.v1-menu{
flex-direction:column;
align-items:stretch;
gap:0;
}

.v1-menu li{
width:100%;
border-bottom:1px solid #eee;
}

.v1-menu a{
justify-content:space-between;
padding:16px 20px;
}

.v1-submenu{
position:static;
opacity:1;
visibility:visible;
transform:none;
display:none;
box-shadow:none;
border-radius:0;
min-width:100%;
}

.v1-dropdown.open .v1-submenu{
display:block;
}

}

@media(max-width:768px){

.v1-top-inner{
flex-direction:column;
align-items:flex-start;
}

.v1-top-left,
.v1-top-right{
width:100%;
}

.v1-logo img{
height:55px;
}

}

@media(max-width:480px){

.v1-nav{
width:100%;
}

.v1-topbar{
font-size:12px;
}

.v1-menu a{
font-size:14px;
}

}

#v1-topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:99998;
}

#v1-header{
    position:fixed;
    top:40px;
    left:0;
    width:100%;
    z-index:99999;
}

body{
    padding-top:130px;
}
@media (max-width:991px){

.v1-nav{
    position:fixed;
    top:130px;
    right:-100%;
    width:320px;
    height:calc(100vh - 130px);
    background:#fff;
    transition:.4s ease;
}

.v1-nav.active{
    right:0;
}

}

/* SECTION */

#bess-system{
    padding:90px 5%;
}

.bess-container{
    max-width:1400px;
    margin:auto;
}

/* HEADER */

.bess-header{
    text-align:center;
    margin-bottom:70px;
}

.bess-tag{
    display:inline-block;
    background:linear-gradient(135deg,#00c853,#00e676);
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.bess-title{
    font-size:clamp(2.2rem,5vw,4.5rem);
    font-weight:800;
    color:#0d1b2a;
    margin-bottom:20px;
}

.bess-subtitle{
    max-width:850px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#555;
}

/* HERO */

.bess-hero{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    margin-top:70px;
}

.bess-image{
    position:relative;
}

.bess-image img{
    width:100%;
    border-radius:30px;
    display:block;
    box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.bess-glow{
    position:absolute;
    width:250px;
    height:250px;
    background:#00e676;
    filter:blur(120px);
    opacity:.3;
    top:-50px;
    left:-50px;
    z-index:-1;
}

.bess-content h2{
    font-size:2.5rem;
    color:#0d1b2a;
    margin-bottom:25px;
}

.bess-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.bess-list{
    list-style:none;
}

.bess-list li{
    margin-bottom:15px;
    font-weight:500;
    color:#333;
}

/* FEATURES */

.bess-features{
    margin-top:100px;
}

.bess-section-title{
    text-align:center;
    font-size:2.8rem;
    color:#0d1b2a;
    margin-bottom:60px;
    font-weight:700;
}

.bess-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.bess-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.bess-card:hover{
    transform:translateY(-10px);
}

.bess-icon{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#00c853,#00e676);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    margin-bottom:20px;
}

.bess-card h3{
    margin-bottom:15px;
    color:#0d1b2a;
}

.bess-card p{
    color:#666;
    line-height:1.7;
}

/* BENEFITS */

.bess-benefits{
    margin-top:100px;
}

.benefit-wrapper{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.benefit-box{
    background:#fff;
    border-left:5px solid #00c853;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.benefit-box h4{
    margin-bottom:12px;
    color:#0d1b2a;
}

/* APPLICATIONS */

.bess-applications{
    margin-top:100px;
}

.app-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.app-card{
    background:#fff;
    padding:30px;
    border-radius:25px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.app-card h4{
    margin-top:15px;
}

/* CTA */

.bess-cta{
    margin-top:100px;
    text-align:center;
    background:linear-gradient(135deg,#0d1b2a,#162c46);
    color:#fff;
    padding:70px 40px;
    border-radius:35px;
}

.bess-cta h2{
    font-size:2.5rem;
    margin-bottom:20px;
}

.bess-cta p{
    max-width:800px;
    margin:auto;
    line-height:1.8;
    margin-bottom:30px;
}

.bess-btn{
    display:inline-block;
    padding:16px 40px;
    background:#00e676;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:1100px){

.bess-grid{
    grid-template-columns:repeat(2,1fr);
}

.app-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.bess-hero,
.benefit-wrapper{
    grid-template-columns:1fr;
}

.bess-grid,
.app-grid{
    grid-template-columns:1fr;
}

.bess-title{
    font-size:2.5rem;
}

.bess-content h2{
    font-size:2rem;
}

.bess-section-title{
    font-size:2rem;
}

.bess-cta h2{
    font-size:2rem;
}

}

.bess-banner::before,
.hero::before,
.banner-overlay,
.overlay{
    display:none;
}

.bess-banner::before,
.hero::before,
.banner-overlay,
.overlay{
    background: rgba(0,0,0,0.2);
}

.bess-banner,
.hero-section,
#bess-hero{
    background:#000 !important;
}

.bess-banner h1,
.hero-section h1{
    color:#ffffff !important;
    opacity:1 !important;
}

.bess-banner p,
.hero-section p{
    color:#d9d9d9 !important;
}

#bess-hero{
    background:#000;
    position:relative;
}

#bess-hero::before{
    display:none;
}

#bess-hero h1{
    color:#fff;
    opacity:1;
    font-weight:800;
}

#bess-hero p{
    color:#e5e5e5;
}

#bess-hero .badge{
    background:#00d66f;
    color:#fff;
}