html{
    scroll-behavior:smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#111;
}

.logo{
    width:180px;
}
.navbar{
    background:rgba(0,0,0,.45)!important;
    backdrop-filter:blur(15px);
}

.nav-link{
    font-weight:600;
    margin-left:15px;
}

.nav-link:hover{
    color:#00AEEF!important;
}

.navbar-toggler{
    background:white;
}
.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
}

.nav-links a{
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#00AEEF;
}

.quote-btn{
    background:#00AEEF;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:bold;
    transition:.3s;
}

.quote-btn:hover{
    background:#0088cc;
}

.hero-text{
    min-height:calc(100vh - 120px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    color:white;
}
.hero-text h1{
    font-size:72px;
    font-weight:800;
    line-height:1.1;
    max-width:900px;
    margin-bottom:25px;
    text-shadow:0 5px 20px rgba(0,0,0,.6);
}

.hero-text p{
    font-size:24px;
    max-width:700px;
    line-height:1.7;
    margin-bottom:40px;
    color:#e5e5e5;
}

.hero-btn{
    background:white;
    color:#111;
    padding:18px 40px;
    text-decoration:none;
    border-radius:8px;
    font-weight:bold;
    transition:.3s;
}

.hero-btn:hover{
    transform:translateY(-3px);
}
.services{
    background:#111;
    color:white;
    padding:100px 8%;
}

.services h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#1b1b1b;
    border:2px solid #00AEEF;
    border-radius:15px;
    padding:35px;
    transition:.35s;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 15px 35px rgba(0,174,239,.35);
}

.card h3{
    margin-bottom:15px;
    font-size:26px;
}
.card h3 i{
    color:#00AEEF;
    margin-right:10px;
}

.card p{
    color:#cfcfcf;
    line-height:1.6;
}
.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    padding:80px 8%;
    background:#00AEEF;
    text-align:center;
}

.stat{
    color:white;
}

.stat h2{
    font-size:52px;
    margin-bottom:10px;
}

.stat p{
    font-size:20px;
}
.showcase{
    background:#0d0d0d;
    color:white;
    padding:100px 8%;
}

.showcase h2{
    font-size:48px;
    text-align:center;
}

.showcase p{
    text-align:center;
    color:#ccc;
    margin:20px 0 60px;
}

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

.gallery-card{
    overflow:hidden;
    border-radius:15px;
    transition:.35s;
    cursor:pointer;
}

.gallery-card img{
    width:100%;
    display:block;
    transition:.4s;
}

.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,174,239,.4);
}

.gallery-card:hover img{
    transform:scale(1.08);
}

@media(max-width:900px){

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

}
.sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:rgba(0,0,0,.92);
    backdrop-filter:blur(12px);
    z-index:9999;
    animation:slideDown .3s ease;
}

@keyframes slideDown{

from{
    transform:translateY(-100%);
}

to{
    transform:translateY(0);
}

}
.floating-call{
    position:fixed;
    bottom:30px;
    right:30px;
    width:70px;
    height:70px;
    background:#00AEEF;
    color:white;
    font-size:34px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.4);
    transition:.3s;
    z-index:99999;
}

.floating-call:hover{
    transform:scale(1.1);
}
.quote-section{
    background:#0a0a0a;
    padding:120px 8%;
    text-align:center;
}

.quote-box{
    max-width:800px;
    margin:auto;
}

.quote-box h2{
    color:white;
    font-size:54px;
    margin-bottom:20px;
}

.quote-box p{
    color:#cfcfcf;
    font-size:22px;
    margin-bottom:40px;
}

.call-btn,
.email-btn{
    display:inline-block;
    margin:10px;
    padding:18px 40px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.call-btn{
    background:#00AEEF;
    color:white;
}

.email-btn{
    background:white;
    color:#111;
}

.call-btn:hover,
.email-btn:hover{
    transform:translateY(-5px);
}
.quote-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.quote-info{
    color:white;
}

.quote-info h2{
    font-size:52px;
    margin-bottom:20px;
}

.quote-info p{
    color:#d5d5d5;
    line-height:1.8;
    margin-bottom:20px;
}

.quote-info h3{
    margin:20px 0;
    color:#00AEEF;
}

.quote-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}
.quote-form{
    margin-top:80px;
}

.quote-form input,
.quote-form select,
.quote-form textarea{
    padding:18px;
    border:none;
    border-radius:10px;
    font-size:17px;
}

.quote-form button{
    background:#00AEEF;
    color:white;
    border:none;
    padding:18px;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.quote-form button:hover{
    background:#0088cc;
}

@media(max-width:900px){

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

}
.footer{
    background:#050505;
    color:white;
    padding:80px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-logo img{
    width:220px;
    margin-bottom:20px;
}

.footer-logo p{
    color:#bdbdbd;
    line-height:1.8;
}

.footer h3{
    color:#00AEEF;
    margin-bottom:20px;
}

.footer-links{
    display:flex;
    flex-direction:column;
}

.footer-links a{
    color:white;
    text-decoration:none;
    margin-bottom:12px;
    transition:.3s;
}

.footer-links a:hover{
    color:#00AEEF;
}

.footer-contact p{
    margin-bottom:12px;
    color:#d5d5d5;
}

.copyright{
    text-align:center;
    margin-top:60px;
    padding-top:20px;
    border-top:1px solid #333;
    color:#888;
}

@media(max-width:900px){

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

.footer-logo img{
margin:auto;
display:block;
margin-bottom:20px;
}

}
.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

.lightbox img{
    max-width:90%;
    max-height:90%;
    border-radius:12px;
}

.close{
    position:absolute;
    top:30px;
    right:45px;
    color:white;
    font-size:60px;
    cursor:pointer;
}
.reviews{
    background:#111;
    color:white;
    padding:100px 8%;
}

.reviews h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
}

.review-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.review-card{
    background:#1b1b1b;
    padding:35px;
    border-radius:15px;
    border-top:5px solid #00AEEF;
    transition:.3s;
}

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

.stars{
    color:#FFD700;
    font-size:24px;
    margin-bottom:20px;
}

.review-card p{
    color:#d5d5d5;
    line-height:1.8;
    margin-bottom:20px;
}

.review-card h4{
    color:#00AEEF;
}
.why{
    background:#0f0f0f;
    color:#fff;
    padding:100px 8%;
}

.why h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.why-box{
    background:#1b1b1b;
    border-radius:12px;
    padding:30px;
    border-top:4px solid #00AEEF;
    transition:.3s;
}

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

.why-box h3{
    margin-bottom:15px;
}

.why-box p{
    color:#d5d5d5;
    line-height:1.7;
}
.hero-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}
.hero-btn-secondary{
    background:transparent;
    color:white;
    border:2px solid #00AEEF;
    padding:18px 40px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.hero-btn-secondary:hover{
    background:#00AEEF;
}
.tagline{
    display:inline-block;
    background:rgba(0,174,239,.15);
    border:1px solid #00AEEF;
    color:#00AEEF;
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:25px;
    font-weight:700;
    letter-spacing:.5px;
}

.hero-text h1{
    font-size:76px;
    line-height:1.05;
    max-width:950px;
    margin:auto;
    margin-bottom:25px;
    font-weight:800;
}

.hero-text p{
    max-width:760px;
    margin:auto;
    margin-bottom:40px;
    font-size:22px;
    color:#dddddd;
    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn,
.hero-btn-secondary{
    padding:18px 42px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero > *{
    position:relative;
    z-index:2;
}

.hero-btn{
    background:#00AEEF;
    color:white;
}

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

.hero-btn-secondary{
    border:2px solid white;
    color:white;
}

.hero-btn-secondary:hover{
    background:white;
    color:#111;
}
.why-us{
    background:#0b0b0b;
    color:#fff;
    padding:100px 8%;
}

.why-us h2{
    text-align:center;
    font-size:48px;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.why-card{
    background:#181818;
    border-radius:15px;
    padding:40px 30px;
    text-align:center;
    transition:.3s;
    border:1px solid rgba(255,255,255,.08);
}

.why-card:hover{
    transform:translateY(-10px);
    border-color:#00AEEF;
}

.why-card i{
    font-size:50px;
    color:#00AEEF;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#cfcfcf;
    line-height:1.7;
}
.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.contact-left h2{
    color:white;
    font-size:52px;
    margin-bottom:20px;
}

.contact-left p{
    color:#ccc;
    margin-bottom:30px;
    line-height:1.8;
}

.contact-left ul{
    list-style:none;
}

.contact-left li{
    color:white;
    margin-bottom:18px;
    font-size:18px;
}

.contact-left i{
    color:#00AEEF;
    width:30px;
}

.contact-right form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-right input,
.contact-right select,
.contact-right textarea{

width:100%;

background:#fff;

padding:18px;

border:2px solid #e5e5e5;

border-radius:12px;

font-size:17px;

transition:.3s;

}
.contact-right button{
    background:#00AEEF;
    color:white;
    padding:18px;
    border:none;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.contact-right button:hover{
    background:#0088cc;
}

@media(max-width:900px){

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

}
#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

#loader img{
    width:220px;
    animation:pulse 1.5s infinite;
}

#content{
    display:none;
}

@keyframes pulse{

0%{
transform:scale(.95);
}

50%{
transform:scale(1.05);
}

100%{
transform:scale(.95);
}

}
.floating-call{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    background:#00AEEF;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,174,239,.4);
    z-index:9999;
    animation:pulsePhone 2s infinite;
}

@keyframes pulsePhone{

0%{
transform:scale(1);
}

50%{
transform:scale(1.12);
}

100%{
transform:scale(1);
}

}

.floating-call:hover{
    transform:scale(1.1);
}
.before-after{

    position:relative;
    overflow:hidden;

}

.before-img,
.after-img{

    width:100%;
    display:block;

}

.after-wrapper{

    position:absolute;
    top:0;
    left:0;
    width:50%;
    height:100%;
    overflow:hidden;

}

.slider{

    position:absolute;
    width:100%;
    top:50%;
    left:0;
    transform:translateY(-50%);
    z-index:10;

}.services-checkboxes{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:25px;
}

.services-checkboxes label{
    display:flex;
    align-items:center;
    gap:12px;
    background:#ffffff;
    color:#222;
    padding:14px 16px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
    border:2px solid transparent;
}

.services-checkboxes label:hover{
    border-color:#00AEEF;
    transform:translateY(-2px);
}

.services-checkboxes input{
    width:18px;
    height:18px;
    accent-color:#00AEEF;
}.form-label{
    display:block;
    color:white;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}
.sticky-cta{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:none;
    z-index:9999;
}

.sticky-cta a{
    width:50%;
    float:left;
    text-align:center;
    padding:18px;
    text-decoration:none;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.sticky-cta a:first-child{
    background:#00AEEF;
}

.sticky-cta a:last-child{
    background:#111;
}

@media(max-width:768px){

.sticky-cta{
display:flex;
}

.sticky-cta a{
float:none;
width:50%;
}

}
.service-card{

    background:#181818;
    border-radius:18px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    box-shadow:0 12px 30px rgba(0,0,0,.25);
    transition:.35s;
    height:100%;

}

.service-card img{

    width:100%;
    height:240px;
    object-fit:cover;

}

.service-content{

    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;

}

.service-content i{

    font-size:34px;
    color:#00AEEF;
    margin-bottom:18px;

}

.service-content h3{

    color:#fff;
    font-size:34px;
    line-height:1.2;
    margin-bottom:15px;

}

.service-content p{

    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:30px;
    flex:1;

}

.learn-btn{

    display:inline-block;
    align-self:flex-start;

    background:#00AEEF;
    color:#fff;

    padding:14px 28px;

    border-radius:8px;

    font-weight:700;

    transition:.3s;

}

.learn-btn:hover{

    background:#0088c5;
    transform:translateY(-3px);

}.projects{
    background:#0b0b0b;
    padding:100px 0;
}

.projects h2{
    text-align:center;
    color:#fff;
    font-size:48px;
    margin-bottom:10px;
}

.section-subtitle{
    text-align:center;
    color:#bdbdbd;
    margin-bottom:50px;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.project{
    overflow:hidden;
    border-radius:15px;
}

.project img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.35s;
}

.project:hover img{
    transform:scale(1.08);
}
input[type="file"]{
    background:#fff;
    padding:14px;
    border-radius:10px;
    margin-bottom:20px;
}

input[type="file"]::file-selector-button{
    background:#00AEEF;
    color:#fff;
    border:none;
    padding:10px 18px;
    border-radius:8px;
    cursor:pointer;
    margin-right:15px;
}
.map-section{
    background:#111;
    padding:100px 0;
    color:white;
}

.map-section h2{
    text-align:center;
    margin-bottom:20px;
    font-size:46px;
}

.map-section p{
    text-align:center;
    color:#ccc;
    margin-bottom:40px;
    font-size:18px;
}
.service-areas{
    background:#0a0a0a;
    padding:80px 0;
    color:white;
}

.service-areas h2{
    text-align:center;
    margin-bottom:40px;
}

.areas-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.areas-grid span{
    background:#00AEEF;
    padding:12px 22px;
    border-radius:50px;
    font-weight:600;
}
/* ==========================
   CTA SECTION
========================== */

.cta-section{

    background:#000;
    padding:100px 0;
    text-align:center;

}

.cta-section h2{

    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;

}

.cta-section p{

    color:#bfbfbf;
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 35px;

}

.cta-section .hero-btn{

    margin-right:15px;

}

.cta-section .hero-btn-secondary{

    background:transparent;
    color:#fff;
    border:2px solid #00AEEF;

}

.cta-section .hero-btn-secondary:hover{

    background:#00AEEF;
    color:#fff;

}
.coupon-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:999999;
    opacity:0;
    visibility:hidden;
    transition:.35s;
}

.coupon-popup.show{
    opacity:1;
    visibility:visible;
}

.coupon-box{
    background:white;
    width:90%;
    max-width:480px;
    padding:45px;
    border-radius:18px;
    text-align:center;
    position:relative;
    animation:popup .35s ease;
}

@keyframes popup{

from{
transform:scale(.8);
opacity:0;
}

to{
transform:scale(1);
opacity:1;
}

}

.close-popup{
    position:absolute;
    right:15px;
    top:15px;
    background:none;
    border:none;
    font-size:34px;
    cursor:pointer;
}

.coupon-badge{
    display:inline-block;
    background:#00AEEF;
    color:white;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:bold;
    margin-bottom:20px;
}

.coupon-box h2{
    font-size:48px;
    color:#111;
    margin-bottom:15px;
}

.coupon-box p{
    color:#555;
    line-height:1.8;
    margin-bottom:30px;
}

.coupon-btn{
    display:inline-block;
    background:#00AEEF;
    color:white;
    padding:18px 40px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

.coupon-btn:hover{
    background:#0088cc;
}

.coupon-box small{
    display:block;
    margin-top:20px;
    color:#777;
}
.hero{
position:relative;
padding:170px 0 120px;
background:#111;
overflow:hidden;
}

.hero-container{
position:relative;
z-index:2;
display:grid;
grid-template-columns:1.1fr .9fr;
align-items:center;
gap:70px;
}

.hero-left{
color:#fff;
}

.hero-left h1{
font-size:72px;
font-weight:800;
line-height:1.05;
margin-bottom:25px;
}

.hero-left p{
font-size:22px;
line-height:1.8;
color:#ddd;
margin-bottom:40px;
}

.hero-buttons{
display:flex;
gap:20px;
margin-bottom:50px;
flex-wrap:wrap;
}

.hero-btn,
.hero-btn-secondary{
padding:18px 40px;
border-radius:10px;
font-weight:700;
text-decoration:none;
transition:.3s;
}

.hero-btn{
background:#00AEEF;
color:#fff;
}

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

.hero-btn-secondary{
border:2px solid white;
color:white;
}

.hero-btn-secondary:hover{
background:white;
color:#111;
}

.hero-right img{
width:100%;
border-radius:20px;
box-shadow:0 25px 60px rgba(0,0,0,.45);
}

.hero-trust{
display:flex;
gap:50px;
margin-top:20px;
}

.hero-trust h3{
font-size:38px;
color:#00AEEF;
margin-bottom:5px;
}

.hero-trust span{
color:#ccc;
font-size:15px;
}

@media(max-width:991px){

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

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

.hero-trust{
justify-content:center;
flex-wrap:wrap;
}

}
.hero{

position:relative;

background:url("../images/me.jpg") center/cover;
background-position: center top;

padding:170px 0 120px;

min-height:100vh;

}

.hero-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.62);

}

.hero-wrapper{

position:relative;

z-index:2;

display:grid;

grid-template-columns:1.2fr .8fr;

gap:70px;

align-items:center;

}

.hero-left{

color:white;

}

.hero-pill{

display:inline-block;

padding:12px 24px;

border-radius:50px;

background:rgba(0,174,239,.15);

border:1px solid #00AEEF;

color:#00AEEF;

font-weight:700;

margin-bottom:30px;

}

.hero-left h1{

font-size:78px;

font-weight:800;

line-height:1;

margin-bottom:25px;

}

.hero-left p{

font-size:22px;

line-height:1.8;

max-width:650px;

margin-bottom:40px;

color:#ddd;

}

.hero-form{

background:white;

padding:40px;

border-radius:18px;

box-shadow:0 25px 60px rgba(0,0,0,.35);

}

.hero-form h2{

text-align:center;

margin-bottom:25px;

font-weight:700;

}

.hero-form input,

.hero-form select{

width:100%;

padding:16px;

margin-bottom:18px;

border:1px solid #ddd;

border-radius:10px;

}

.hero-form button{

width:100%;

padding:18px;

background:#00AEEF;

color:white;

border:none;

border-radius:10px;

font-weight:bold;

font-size:18px;

}

.hero-form p{

text-align:center;

margin-top:20px;

font-weight:bold;

color:#00AEEF;

}

.hero-stats{

display:flex;

gap:50px;

margin-top:45px;

}

.hero-stats h3{

font-size:40px;

color:#00AEEF;

margin-bottom:5px;

}

.hero-stats span{

color:#ddd;

}

@media(max-width:991px){

.hero-wrapper{

grid-template-columns:1fr;

}

.hero-left{

text-align:center;

}

.hero-left h1{

font-size:52px;

}

.hero-stats{

justify-content:center;

flex-wrap:wrap;

}

}
/* Premium Dropdown */

.dropdown-menu{
    background:linear-gradient(180deg,#00AEEF,#0088cc);
    border:none;
    border-radius:18px;
    padding:12px;
    min-width:280px;
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.dropdown-item{
    color:#fff;
    font-weight:600;
    padding:14px 18px;
    border-radius:10px;
    transition:.25s;
}

.dropdown-item:hover{
    background:rgba(255,255,255,.18);
    color:#fff;
    padding-left:28px;
}

.dropdown-divider{
    border-color:rgba(255,255,255,.2);
}

.dropdown-toggle::after{
    margin-left:10px;
}

@media(min-width:992px){

.dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
    animation:dropdownFade .25s ease;
}

}

@keyframes dropdownFade{

from{
opacity:0;
transform:translateY(12px);
}

to{
opacity:1;
transform:translateY(0);
}

}
.gallery-slider{
    background:#111;
    padding:100px 0;
}

.gallery-slider h2{
    color:#fff;
    text-align:center;
    margin-bottom:50px;
}

.slider-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

.photo-slider{
    display:flex;
    gap:20px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    padding:10px 60px;
}

.photo-slider::-webkit-scrollbar{
    display:none;
}

.photo-slider img{
    width:350px;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    flex-shrink:0;
    transition:.3s;
}

.photo-slider img:hover{
    transform:scale(1.03);
}

.slide-btn{
    position:absolute;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#00AEEF;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    z-index:2;
}

.prev{
    left:0;
}

.next{
    right:0;
}
.facebook-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    background:#1877F2;

    color:#fff;

    padding:18px 34px;

    border-radius:10px;

    font-size:18px;

    font-weight:700;

    text-decoration:none;

    transition:.3s;

    min-width:240px;

    box-shadow:0 10px 25px rgba(24,119,242,.25);

}

.facebook-btn:hover{

    background:#1669d9;

    color:#fff;

    transform:translateY(-3px);

}/* ==========================
   ESTIMATE FORM
========================== */

.estimate-form{
    max-width:950px;
    margin:auto;
    background:#181818;
    padding:50px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.estimate-title{
    color:#fff;
    text-align:center;
    font-size:48px;
    font-weight:800;
    margin-bottom:10px;
}

.estimate-subtitle{
    color:#bdbdbd;
    text-align:center;
    margin-bottom:45px;
    font-size:18px;
}

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

.form-group{
    margin-bottom:25px;
}

.form-label{
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:700;
    margin-bottom:10px;
}

.required{
    color:#00AEEF;
}

.form-help{
    color:#999;
    margin-bottom:12px;
    font-size:14px;
}

.form-input,
.form-select,
.form-textarea{
    width:100%;
    padding:16px 18px;
    background:#101010;
    color:#fff;
    border:2px solid #2a2a2a;
    border-radius:12px;
    font-size:16px;
    transition:.3s;
}

.form-input::placeholder,
.form-textarea::placeholder{
    color:#777;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus{
    outline:none;
    border-color:#00AEEF;
    box-shadow:0 0 15px rgba(0,174,239,.25);
}

.radio-group{
    display:flex;
    gap:20px;
}

.radio-label,
.checkbox-label{
    display:flex;
    align-items:center;
    gap:12px;
    background:#101010;
    color:#fff;
    padding:15px;
    border:2px solid #2a2a2a;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.radio-label:hover,
.checkbox-label:hover{
    border-color:#00AEEF;
    transform:translateY(-2px);
}

.radio-custom{
    width:18px;
    height:18px;
    border:2px solid #00AEEF;
    border-radius:50%;
}

.checkbox-custom{
    width:18px;
    height:18px;
    border:2px solid #00AEEF;
    border-radius:5px;
}

.radio-label input,
.checkbox-label input{
    display:none;
}

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

.btn-estimate{
    width:100%;
    background:#00AEEF;
    color:#fff;
    border:none;
    padding:20px;
    border-radius:12px;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.btn-estimate:hover{
    background:#0087c4;
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,174,239,.35);
}

@media(max-width:768px){

.estimate-form{
    padding:30px 20px;
}

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

.radio-group{
    flex-direction:column;
}

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

.estimate-title{
    font-size:36px;
}

}
/* ===== Custom Radio Buttons ===== */

.radio-label input:checked + .radio-custom{
    background:#00AEEF;
    border-color:#00AEEF;
    position:relative;
}

.radio-label input:checked + .radio-custom::after{
    content:"";
    position:absolute;
    width:8px;
    height:8px;
    background:#fff;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

.radio-label:has(input:checked){
    border-color:#00AEEF;
    background:rgba(0,174,239,.12);
}

/* ===== Custom Checkboxes ===== */

.checkbox-label input:checked + .checkbox-custom{
    background:#00AEEF;
    border-color:#00AEEF;
    position:relative;
}

.checkbox-label input:checked + .checkbox-custom::after{
    content:"✓";
    position:absolute;
    color:#fff;
    font-size:13px;
    font-weight:bold;
    top:50%;
    left:50%;
    transform:translate(-50%,-55%);
}

.checkbox-label:has(input:checked){
    border-color:#00AEEF;
    background:rgba(0,174,239,.12);
}

/* Smooth Hover */

.radio-label,
.checkbox-label{
    transition:.25s ease;
}

.radio-label:hover,
.checkbox-label:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,174,239,.15);
}
/*==========================
    REVIEW BUTTONS
===========================*/

.carousel-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:58px;
    height:58px;
    border:none;
    border-radius:50%;
    background:#00AEEF;
    color:#fff;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    transition:.3s;
    z-index:10;
    box-shadow:0 10px 25px rgba(0,174,239,.35);
}

.carousel-arrow:hover{
    background:#0088cc;
    transform:translateY(-50%) scale(1.08);
}

.carousel-arrow-left{
    left:0;
}

.carousel-arrow-right{
    right:0;
}

.review-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:60px;
}

.review-buttons .btn{
    padding:16px 34px;
    font-weight:700;
    border-radius:10px;
    transition:.3s;
}

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

.facebook-btn{
    background:#1877F2;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.facebook-btn:hover{
    background:#0d65d9;
    color:#fff;
    transform:translateY(-4px);
}

@media(max-width:992px){

.review-card{
min-width:330px;
max-width:330px;
}

}

@media(max-width:768px){

.section-title{
font-size:38px;
}

.section-subtitle{
font-size:18px;
padding:0 15px;
}

.reviews-carousel{
padding:10px 20px;
}

.review-card{
min-width:90%;
max-width:90%;
}

.carousel-arrow{
display:none;
}

.review-buttons{
flex-direction:column;
align-items:center;
}

.review-buttons .btn,
.facebook-btn{
width:100%;
max-width:340px;
text-align:center;
}

.platform-badge{
width:100%;
justify-content:center;
}

}

.review-card{
opacity:0;
transform:translateY(20px);
animation:reviewFade .6s ease forwards;
}

.review-card:nth-child(1){animation-delay:.1s;}
.review-card:nth-child(2){animation-delay:.2s;}
.review-card:nth-child(3){animation-delay:.3s;}
.review-card:nth-child(4){animation-delay:.4s;}
.review-card:nth-child(5){animation-delay:.5s;}
.review-card:nth-child(6){animation-delay:.6s;}
.review-card:nth-child(7){animation-delay:.7s;}

@keyframes reviewFade{

from{
opacity:0;
transform:translateY(20px);
}

to{
opacity:1;
transform:translateY(0);
}

}
/* ===========================
   REVIEWS
=========================== */

.reviews{
    background:#0b0b0b;
    padding:110px 0;
}

.review-title{
    text-align:center;
    color:#fff;
    font-size:52px;
    font-weight:800;
    margin-bottom:15px;
}

.review-subtitle{
    text-align:center;
    color:#bdbdbd;
    max-width:700px;
    margin:0 auto 60px;
    font-size:18px;
}
/* ===========================
   REVIEW SLIDER
=========================== */

.review-container{
    position:relative;
    max-width:620px;
    min-height:300px;
    margin:0 auto;
}

.review-slide{
    position:absolute;
    inset:0;

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

    background:#181818;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    box-shadow:0 20px 60px rgba(0,0,0,.35);

    padding:35px;

    opacity:0;
    visibility:hidden;

    transform:translateY(20px) scale(.98);

    transition:
        opacity .8s ease-in-out,
        transform .8s ease-in-out,
        visibility .8s;
}

.review-slide.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}

.review-slide .stars{
    font-size:30px;
    color:#FFD700;
    margin-bottom:25px;
}

.review-slide p{
    color:#e5e5e5;
    font-size:18px;
    line-height:1.8;
    font-style:italic;
    max-width:620px;
    margin:0 auto;
}

.review-slide h4{
    margin-top:30px;
    color:#00AEEF;
    font-size:20px;
    font-weight:700;
}

.review-dots{
    display:none;
    justify-content:center;
    gap:12px;
    margin-top:40px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#555;
    cursor:pointer;
    transition:.3s;
}

.dot.active{
    background:#00AEEF;
    transform:scale(1.3);
}

.review-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:50px;
}

.review-buttons .btn,
.facebook-btn{
    padding:16px 32px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.review-buttons .btn:hover,
.facebook-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:768px){

.review-container{
    min-height:460px;
}

.review-slide{
    padding:35px 25px;
}

.review-slide p{
    font-size:18px;
}

.review-slide h4{
    font-size:20px;
}

.review-buttons{
    flex-direction:column;
    align-items:center;
}

.review-buttons .btn,
.facebook-btn{
    width:100%;
    max-width:320px;
}

}
/* ==========================
   NAVBAR
========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 0;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(15px);
    z-index:9999;
}

.logo{
    width:120px;
    height:auto;
}

.navbar-nav .nav-link{
    color:#fff !important;
    font-weight:600;
    margin:0 12px;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:#00AEEF !important;
}

.navbar .btn{
    background:#00AEEF;
    border:none;
    padding:12px 24px;
    font-weight:700;
}
/* ===================================
   COMMERCIAL HERO
=================================== */

.commercial-hero{

    background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../images/work10.jpg");

    background-size:cover;
    background-position:center;

}
.commercial-hero{

    min-height:100vh;

    display:flex;
    align-items:center;

    padding-top:140px;

}
/* ===================================
   COMMERCIAL INDUSTRIES
=================================== */

.commercial-industries{
    background:#111;
    padding:110px 0;
}

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-heading span{
    color:#00AEEF;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:48px;
    color:#fff;
    margin:18px 0;
}

.section-heading p{
    color:#cfcfcf;
    line-height:1.8;
    font-size:18px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
}

.industry-card{
    background:#1a1a1a;
    border-radius:20px;
    padding:40px;
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);
}

.industry-card:hover{
    transform:translateY(-10px);
    border-color:#00AEEF;
    box-shadow:0 20px 50px rgba(0,174,239,.18);
}

.industry-card i{
    font-size:46px;
    color:#00AEEF;
    margin-bottom:25px;
}

.industry-card h3{
    color:#fff;
    margin-bottom:15px;
    font-size:26px;
}

.industry-card p{
    color:#cfcfcf;
    line-height:1.8;
}
/* ===================================
   COMMERCIAL INTRO
=================================== */

.section-tag{

    display:inline-block;
    padding:10px 24px;
    background:rgba(0,170,255,.12);
    color:#12acff;
    border-radius:999px;
    font-size:.85rem;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;

}
.section-tag{
    margin-bottom:25px;
}
.service-text h2{

    color:#fff;
    font-size:48px;
    margin-bottom:25px;

}
.service-text p{

font-size:18px;

line-height:1.9;

color:#d5d5d5;

margin-bottom:22px;

}

.service-features{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:18px;

margin-top:35px;

}

.service-features div{

display:flex;

align-items:center;

gap:12px;

font-weight:600;

color:#fff;

}

.service-features i{

color:#00AEEF;

font-size:18px;

}

@media(max-width:768px){

.service-features{

grid-template-columns:1fr;

}

.service-text{

    padding-left:40px;

}

.service-text h2{

    color:#fff;
    font-size:48px;
    font-weight:700;
    margin-bottom:25px;

}

.service-text p{

    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
    margin-bottom:25px;

}
.service-text h2{

font-size:36px;

}

}
.contact-hero .lead{

max-width:760px;
margin:auto;
opacity:.9;

}

.contact-hero .btn{

padding:14px 34px;
border-radius:12px;

}
/* ==========================
   CONTACT HERO
========================== */

.contact-hero{

    position:relative;
    min-height:70vh;
    display:flex;
    align-items:center;
    background:url("../images/m3.jpg") center center/cover no-repeat;
background-position:center top;
justify-content: center;
text-align: center;
}

.contact-hero .hero-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.65));

}

.contact-hero .container{

    position:relative;
    z-index:2;

}

.contact-hero-content{

    max-width:750px;
    color:#fff;

}

.contact-hero h1{

    font-size:68px;
    font-weight:800;
    line-height:1.05;
    margin:25px 0;

}

.contact-hero p{

    font-size:22px;
    line-height:1.8;
    color:#ddd;
    margin-bottom:40px;

}

.hero-contact-info{

    display:flex;
    gap:35px;
    flex-wrap:wrap;
    margin-top:45px;

}

.hero-contact-info div{

    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-weight:600;

}

.hero-contact-info i{

    color:#00AEEF;

}

@media(max-width:768px){

.contact-hero{

text-align:center;

}

.contact-hero h1{

font-size:44px;

}

.contact-hero p{

font-size:18px;

}

.hero-contact-info{

justify-content:center;

}

}
/* ==========================
   CONTACT PAGE
========================== */

.contact-section{

padding:100px 0;

background:#111;

}

.contact-card,
.estimate-card{

background:#1b1b1b;

padding:45px;

border-radius:20px;

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

box-shadow:0 20px 45px rgba(0,0,0,.25);

height:100%;

}

.contact-card h2,
.estimate-card h2{

color:#fff;

margin:20px 0;

font-size:38px;

font-weight:700;

}

.contact-card p,
.estimate-card p{

color:#cfcfcf;

line-height:1.8;

}

.contact-item{

display:flex;

gap:20px;

margin-top:35px;

}

.contact-item .icon{

width:60px;

height:60px;

background:#00AEEF;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:22px;

flex-shrink:0;

}

.contact-item h5{

color:#fff;

margin-bottom:6px;

}

.contact-item a{

color:#00AEEF;

text-decoration:none;

}

.contact-item p{

margin:0;

}

.estimate-card .form-control,
.estimate-card .form-select{

background:#111;

border:1px solid #333;

color:#fff;

padding:15px;

border-radius:12px;

}

.estimate-card .form-control::placeholder{

color:#888;

}

.estimate-card .form-control:focus,
.estimate-card .form-select:focus{

background:#111;

color:#fff;

border-color:#00AEEF;

box-shadow:none;

}

.estimate-card .btn{

padding:16px;

font-weight:700;

font-size:18px;

border-radius:12px;

background:#00AEEF;

border:none;

}

.estimate-card .btn:hover{

background:#008cc0;

}
/* ==========================
   WHY CONTACT
========================== */

.why-contact{

    background:#0d0d0d;
    padding:110px 0;

}

.why-contact h2{

    color:#fff;
    font-size:48px;
    font-weight:800;
    margin:20px 0;

}

.why-contact p{

    color:#bdbdbd;
    max-width:700px;
    margin:auto;

}

.why-card{

    background:#181818;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
    height:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#00AEEF;

    box-shadow:0 20px 40px rgba(0,174,239,.15);

}

.why-card i{

    font-size:46px;

    color:#00AEEF;

    margin-bottom:25px;

}

.why-card h3{

    color:#fff;

    margin-bottom:15px;

}

.why-card p{

    color:#cfcfcf;

}
/* ==========================
   SERVICE AREAS
========================== */

.service-areas-section{

    background:#111;
    padding:110px 0;

}

.service-areas-section h2{

    color:#fff;
    font-size:48px;
    font-weight:800;
    margin:20px 0;

}

.service-areas-section p{

    color:#bdbdbd;
    max-width:700px;
    margin:auto;

}

.areas-grid{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin-top:60px;

}

.area-pill{

    background:#181818;
    color:#fff;
    padding:15px 28px;
    border-radius:50px;
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
    font-weight:600;

}
.area-pills{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    margin-top:45px;
    margin-bottom:70px;
}

.area-pill:hover{

    background:#00AEEF;
    transform:translateY(-3px);

}
/* ==========================
   BEFORE & AFTER GALLERY
========================== */

.before-after-gallery h2{

    color:#ffffff !important;
    font-size:48px;
    font-weight:700;
    text-align:center;
    margin:20px 0 10px;

}

.before-after-gallery p{

    color:#cfcfcf !important;
    font-size:18px;
    text-align:center;
    margin-bottom:60px;
}/*==========================
HOUSE HERO
==========================*/

.house-hero{

    min-height:90vh;
    display:flex;
    align-items:center;
    position:relative;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.65)),
    url("../images/hero.jpg");

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

}

.house-hero .hero-content{

    max-width:760px;

}

.house-hero h1{

    font-size:68px;
    font-weight:800;
    line-height:1.1;
    margin:20px 0;

}

.house-hero p{

    font-size:22px;
    color:#e6e6e6;
    line-height:1.8;

}/* ==========================
   HOME FAQ
========================== */

.section-heading{

    text-align:center;
    margin-bottom:60px;

}
/* ==========================
   SECTION HEADINGS
========================== */

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.section-heading h2{

    font-size:48px;
    font-weight:700;
    color:#fff;
    margin:15px 0;

}

.section-heading p{

    max-width:700px;
    margin:auto;
    color:#cfcfcf;
    font-size:18px;
    line-height:1.8;

}
.faq-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.faq-card{

    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.3s;

}

.faq-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

.faq-card h3{

    color:#00AEEF;
    font-size:24px;
    margin-bottom:18px;
    font-weight:700;

}

.faq-card p{

    color:#ffffff;
    line-height:1.8;
    margin:0;

}

.faq-button{

    text-align:center;
    margin-top:60px;

}
/* ==========================
   VIDEO GALLERY
========================== */

.video-gallery{

    padding:100px 0;

}

.video-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;

}

.video-card:hover{

    transform:translateY(-8px);

}

.video-card video{

    width:100%;
    aspect-ratio:9 / 16;
    object-fit:cover;
    display:block;
    background:#000;

}
.video-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.12);

}

.video-card h3{

    margin:0;
    padding:18px;
    text-align:center;
    font-size:20px;
    font-weight:700;
    color:#222;
    background:#f8f9fa;

}

.video-card video{

    width:100%;
    aspect-ratio:9 / 16;
    object-fit:cover;
    display:block;

}
.service-image{

    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);

}
/*==========================
EXTERIOR SURFACE HERO
==========================*/

.surface-hero{

    background:
    linear-gradient(rgba(0,0,0,.60),rgba(0,0,0,.60)),
    url("../images/work33.jpg");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

}
/* ==========================
   SERVICE PAGES
========================== */

.service-hero{
    position:relative;
    min-height:80vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.service-hero .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:850px;
    color:#fff;
}

.hero-content h1{
    font-size:64px;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    color:#ddd;
    font-size:20px;
    line-height:1.8;
}

.service-page{

    background:#111;
    color:#fff;
    padding:100px 0;

}

.service-page img{

    width:100%;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);

}.service-text h2{
    color:#fff;
    font-size:48px;
    margin-bottom:25px;
}

.service-text p{

    color:#cfcfcf;
    font-size:18px;
    line-height:1.9;
    margin-bottom:25px;

}
.service-list i{
    color:#00AEEF;
     list-style:none !important;
}

.included-card{

    background:#181818;
    border-radius:20px;
    border-left:5px solid #00AEEF;

    padding:40px;

    height:100%;

    transition:.3s;

}

.included-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,174,239,.18);

}

.included-card i{

    color:#00AEEF;
    font-size:42px;
    margin-bottom:25px;

}

.included-card h3{

    color:#fff;
    font-size:30px;
    margin-bottom:18px;

}

.included-card p{

    color:#cfcfcf;
    line-height:1.8;

}
.benefits{
    background:#111;
    padding:100px 0;
}

.benefits h2{
    color:#fff;
    text-align:center;
    margin-bottom:50px;
}

.benefit{
    background:#181818;
    color:#fff;
    border-left:5px solid #00AEEF;
}

.benefit p{
    color:#cfcfcf;
}

.before-after-gallery{
    background:#111;
    padding:100px 0;
}

.ba-card{
    background:#181818;
}

.ba-content{
    padding:25px;
}

.ba-content h3{
    color:#fff;
}

.ba-content p{
    color:#cfcfcf;
}

.home-faq{
    background:#111;
    padding:100px 0;
}

.faq-card{
    background:#181818;
}

.faq-card h3{
    color:#00AEEF;
}

.faq-card p{
    color:#cfcfcf;
}

.service-areas{
    padding: 120px 0 80px;
}
.cta-section{
    background:#000;
    padding:110px 0;
    text-align:center;
}

.cta-section h2{
    color:#fff;
}

.cta-section p{
    color:#bbb;
}
.service-list{

    list-style:none !important;
    padding:0 !important;

}

.service-list li{

    list-style:none !important;

}

.service-list li::before{

    content:none !important;

}

.service-list li::marker{

    content:"" !important;

}
.benefit-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.benefit{

    background:#181818;
    padding:35px;
    border-radius:18px;
    border-left:5px solid #00AEEF;
    transition:.3s;

}

.benefit:hover{

    transform:translateY(-6px);

}

.benefit h3{

    color:#fff;
    margin-bottom:15px;

}

.benefit p{

    color:#cfcfcf;
    margin:0;

}
/*==========================
CONCRETE FAQ
==========================*/

.faq{

    background:#111;
    padding:100px 0;

}

.faq .section-heading{

    text-align:center;
    margin-bottom:60px;

}

.faq .section-heading h2{

    color:#fff !important;
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;

}

.faq .section-heading p{

    color:#cfcfcf !important;
    font-size:18px;
    max-width:700px;
    margin:0 auto;

}

#faqAccordion .accordion-item{

    background:#181818;
    border:1px solid #2a2a2a;
    border-radius:16px;
    margin-bottom:18px;
    overflow:hidden;

}

#faqAccordion .accordion-button{

    background:#181818;
    color:#fff;
    font-size:20px;
    font-weight:600;
    padding:22px 28px;
    box-shadow:none;

}

#faqAccordion .accordion-button:not(.collapsed){

    background:#202020;
    color:#00AEEF;

}

#faqAccordion .accordion-button::after{

    filter:invert(1);

}

#faqAccordion .accordion-body{

    background:#181818;
    color:#cfcfcf;
    font-size:17px;
    line-height:1.8;

}
.faq{

    background:#111;
    padding:100px 0;

}

.faq .section-heading{

    text-align:center;
    margin-bottom:60px;

}

.faq-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.faq-card{

    background:#181818;
    border-radius:18px;
    padding:35px;
    transition:.3s;
    border-left:5px solid #00AEEF;

}

.faq-card:hover{

    transform:translateY(-8px);

}

.faq-card h3{

    color:#fff;
    margin-bottom:18px;

}

.faq-card p{

    color:#cfcfcf;
    line-height:1.8;
    margin:0;

}
.concrete-hero{

    background:
    linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
    url("../images/work12.jpg");

    background-size:cover;
    background-position:center;

}
.included{

    background:#111;
    padding:100px 0;

}
.included .section-heading{

    text-align:center;
    margin-bottom:70px;

}

.included .section-heading h2{

    color:#fff;
    font-size:52px;
    font-weight:800;
    margin:18px 0;

}

.included .section-heading p{

    color:#cfcfcf;
    font-size:18px;
    max-width:700px;
    margin:0 auto;

}
.before-after-gallery .ba-card{

    overflow:hidden;
    border-radius:18px;

}

.before-after-gallery .ba-card img{

    width:100%;
    height:auto;
    display:block;

}
.hero-checks{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px 40px;
    margin-top:45px;
    padding:0;
    list-style:none;

}

.hero-checks li{

    color:#fff;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;

}

.hero-checks i{

    color:#12acff;

}
.hero-content{

    position:relative;
    z-index:2;

    max-width:850px;
    margin:0 auto;

    text-align:center;

    color:#fff;

}.hero-content h1{

    font-size:68px;
    font-weight:800;
    line-height:1.1;
    margin:20px 0;

}

.hero-content p{

    font-size:22px;
    color:#e6e6e6;
    line-height:1.8;

}