*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.service-link{
    display:block;
    text-align:center;

    background:linear-gradient(
        90deg,
        #0B4DA2 0%,
        #1673D1 35%,
        #1E90FF 70%,
        #42B6FF 100%
    );

    color:white;
    padding:14px 24px;
    border-radius:10px;

    font-weight:700;
    text-decoration:none;

    margin-top:auto;

    box-shadow:
        0 4px 15px rgba(22,115,209,.25);

    transition:all .3s ease;
}

.service-link:hover{

    box-shadow:
        0 0 12px rgba(51,204,255,.8),
        0 0 25px rgba(51,204,255,.6),
        0 0 40px rgba(51,204,255,.4);

    transform:translateY(-3px) scale(1.02);
}

.portfolio-link{
    display:block;
    text-align:center;

    background:linear-gradient(
        135deg,
        #111111,
        #444444
    );

    color:white;
    padding:14px 24px;
    border-radius:10px;

    font-weight:700;
    text-decoration:none;

    margin-top:auto;

    box-shadow:
        0 4px 15px rgba(0,0,0,.25);

    transition:all .3s ease;
}

.portfolio-link:hover{
    transform:translateY(-3px) scale(1.02);

    box-shadow:
        0 10px 25px rgba(0,0,0,.35);
}

.portfolio-collage-section{
    padding:10px 50px 10px;
}

.portfolio-collage{
    width:100%;
    display:block;

    max-width:1600px;
    margin:0 auto;

    border-radius:12px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.12);
}

body{
    width:100%;
    overflow-x:hidden;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.6;
    color:#222;
    background:#ffffff;
}

.header{
    background-image:url('../images/black-brick.jpg');
    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:20px 50px;

    position:relative;
}

.header::before{
    content:'';
    position:absolute;
    inset:0;

    background:rgba(0,10,25,.75);

    z-index:0;
}

.header *{
    position:relative;
    z-index:1;
}

.logo-container img{
    height:110px;
    width:auto;
    display:block;
}

.logo-container img{
    width: 230px;   /* adjust to taste */

    filter:
        drop-shadow(0 0 8px rgba(52,170,255,.30))
        drop-shadow(0 0 20px rgba(52,170,255,.15));

    transition: .3s ease;
}

.logo-container img:hover{
    filter:
        drop-shadow(0 0 12px rgba(52,170,255,.45))
        drop-shadow(0 0 28px rgba(52,170,255,.20));
}

.navigation{
display:flex;
gap:50px;
align-items:center;
}

.navigation a{
color:#fff;
text-decoration:none;
font-weight:700;
font-size:18px;
letter-spacing:.5px;
transition:.3s ease;
}

.navigation a:hover{
color:#D9DDE3;
text-shadow:0 0 12px rgba(212,175,55,.5);
}

.header-contact{
    color:#D9DDE3;
font-weight:700;
font-size:20px;
letter-spacing:.5px;
}

.primary-btn{
display:inline-block;
background:linear-gradient(
135deg,
#B8C2CC,
#E8EDF2
);
color:#081423;
padding:16px 34px;
border-radius:6px;
font-weight:700;
text-decoration:none;
box-shadow:0 10px 30px rgba(198,161,91,.35);
transition:.3s;
}

.primary-btn:hover{
transform:translateY(-3px);
box-shadow:0 15px 35px rgba(198,161,91,.45);
}

.secondary-btn{
display:inline-block;
padding:16px 34px;

border:2px solid white;

color:white;

text-decoration:none;

font-weight:700;

border-radius:6px;

transition:.3s;
}

.secondary-btn:hover{
background:white;
color:#041426;
}

.secondary-btn:hover{
background:#d4af37;
color:#081423;
}

.trust-bar{
background-image:url('../images/black-brick.jpg');
background-size:cover;
background-position:center;
color:white;
display:grid;
grid-template-columns:repeat(5,1fr);
padding:40px 25px;
text-align:center;
font-weight:600;
font-size:16px;
}

.trust-item h3{
    font-size:42px;
    color:#D9DDE3;
    margin-bottom:8px;
    font-weight:700;
}

.trust-item p{
    font-size:18px;
    text-transform:uppercase;
    letter-spacing:2px;
    color:#2A6FD6;
    font-weight:600;
}

.stars{
    color:#F4C542;
    font-size:30px;
    margin-top:25px;
    margin-bottom:12px;
    text-shadow:0 0 10px rgba(244,197,66,.4);
}

.trust-icon{
    font-size:48px;
    margin-bottom:15px;
    color:#2EA3FF;
    transition:.3s ease;
    text-shadow:0 0 12px rgba(46,163,255,.45);
}

.trust-item:hover .trust-icon{
    transform:translateY(-4px);
    color:#6BC4FF;
    text-shadow:0 0 18px rgba(46,163,255,.8);
}

.section-heading{
    text-align:center;
}

.section-heading span{
    display:block;

    font-size:22px;
    font-weight:800;

    letter-spacing:4px;
    text-transform:uppercase;

    background:linear-gradient(
        90deg,
        #1673D1,
        #42B6FF,
        #7EDCFF,
        #42B6FF,
        #1673D1
    );

    background-size:300% auto;

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    animation:blueGlow 6s linear infinite;

    margin-bottom:20px;
}

.section-heading h2{
    font-size:34px;
    margin-top:5px;
    margin-bottom:15px;
}

.services-heading{
    max-width:1200px;
    margin:0 auto;
}

.services-heading p{
    max-width:900px;
    margin:0 auto 40px;

    font-size:22px;
    line-height:1.8;

    color:#555;
}

.services-section{
    padding:90px 50px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    border-radius:10px;
    overflow:hidden;

    box-shadow:0 5px 20px rgba(0,0,0,.12);

    transition:.3s;

    display:flex;
    flex-direction:column;
}

.service-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.15),
        0 0 20px rgba(77,163,255,.25);
}

.service-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.service-content{
    padding:20px;

    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.service-tag{
    display:inline-block;

    background:white;
    color:#1E5CC8;

    border:2px solid #1E5CC8;

    padding:8px 18px;

    border-radius:30px;

    font-size:12px;
    font-weight:700;

    letter-spacing:1px;

    margin-bottom:15px;

    text-align:center;
}

.service-content h3{
    font-size:28px;
    margin-bottom:15px;
}

.service-content p{
    color:#666;
    line-height:1.8;

    margin-bottom:20px;

    flex-grow:1;
}

.projects-heading{
    text-align:center;
}

.projects-heading p{
    max-width:none;
    width:100%;

    font-size:22px;
    line-height:1.8;

    color:#D9DDE3;
}

.projects-heading h2{
    font-size:50px;
    margin-bottom:15px;
}

.projects-heading span{
    font-size:26px;
    font-weight:800;
    letter-spacing:5px;
}

.featured-projects{
    padding:100px 50px;

    background-image:url('../images/black-brick.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    color:white;
}

.project-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    margin-top:60px;
}

.project-grid{
    margin-top:60px;
}

.project-card{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.project-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    display:block;
}

.project-overlay{
    position:static;

    background:white;

    color:#222;

    padding:20px;
}

.project-link{
    color:#5EA9FF;
    font-weight:700;
    text-decoration:none;
}

.project-tag{
    display:block;
    margin-bottom:18px;

    background:none;

    color:#1673D1;

    padding:0;

    font-size:14px;
    font-weight:800;

    letter-spacing:3px;
    text-transform:uppercase;

    text-align:center;
}

.project-overlay h3{
    font-size:24px;
    margin-bottom:12px;
    color:#081423;
}

.project-overlay p{
    color:#666;
    line-height:1.7;
    margin-bottom:18px;
}

.project-link{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 24px;

    border:2px solid #111;

    color:#111;

    text-decoration:none;

    font-weight:800;
    font-size:14px;

    letter-spacing:2px;
    text-transform:uppercase;

    transition:.35s ease;
}

.project-link:hover{
    background:#111;
    color:#fff;

    transform:translateY(-2px);
}

.financing-section{
padding:100px 50px;
text-align:center;
background:#f7f9fc;
}

.financing-content h2{
font-size:42px;
margin:15px 0;
}

.testimonials-section{
    background:#f7f7f7;
    padding:60px 50px;
}

.testimonials-section .section-heading{
    margin-bottom:40px;
}

.testimonials-section .section-heading{
    text-align:center;
    margin-bottom:50px;
}

.showcase-strip{
    padding:0;
}

.showcase-strip img{
    width:100%;
    display:block;
}
.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

    max-width:1400px;
    margin:0 auto;
}

.testimonial-card{
    padding:40px;
}

.testimonial-card p{
    font-size:24px;
    line-height:1.8;
}

.testimonials-section{
    padding:80px 50px;

    background-image:
    linear-gradient(
        rgba(255,255,255,.88),
        rgba(255,255,255,.88)
    ),
    url('../images/testimonials-collage.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.cta-content h2{
    font-size:48px;
    line-height:1.2;
    max-width:700px;
    margin:0 auto 20px;
}

.footer{
    background-image:url('../images/black-brick.jpg');
    background-size:cover;
    background-position:center;

    padding:70px 50px;

    color:white;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-bottom:40px;
}

.footer-logo{
height:70px;
margin-bottom:15px;
}

.footer ul{
list-style:none;
}

.footer li{
margin-bottom:10px;
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,.15);
padding-top:20px;
}

/* LUXURY HERO SECTION */

.hero{
    position:relative;
    height:90vh;

    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.55) 40%,
            rgba(0,0,0,.15) 100%
        ),
        url('../images/old-hero.jpg');

    background-size:cover;
    background-position:center 25%;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    width:100%;
    padding-left:80px;
    padding-top:80px;
    color:white;
}

.hero-tagline{
    display:block;

    color:#D9DDE3;

    font-size:18px;

    font-weight:700;

    letter-spacing:4px;

    margin-bottom:25px;
}

.hero-content h1{
    font-size:80px;
    line-height:.92;
    color:white;
    margin-bottom:25px;
    font-weight:700;
}

.hero-subtext{
    color:white;

    font-size:24px;

    line-height:1.6;

    max-width:650px;

    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin-top:30px;
}

.silver-text{
    color:#D9DDE3;
}

.gallery-section{
    padding:80px 50px;
    background:#ffffff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:65% 35%;
    gap:40px;
    align-items:center;
}

.gallery-grid img{
    width:100%;
    height:600px;
    object-fit:cover;
    border-radius:12px;
}

.gallery-grid img{
    width:100%;
    height:350px;
    object-fit:cover;
    display:block;
}

.portfolio-card img{
    height:260px;
    object-fit:cover;
    display:block;
}

.project-details{
    padding:30px 50px 20px;
    background:#f8fafc;
}

.project-details h2{
    margin-bottom:25px;
}

.project-details ul{
    margin-top:35px;
    padding-left:25px;
}

.project-details li{
    font-size:20px;
    line-height:2;
    color:#111;
    font-weight:700;
    margin-bottom:12px;
}

.project-details img{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:12px;
}


.project-link:hover{
    transform:translateY(-2px);
}

/* NEW STUFF GOES HERE */

.gallery-section{
    padding:80px 50px;
    background:#ffffff;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:40px;
}

.gallery-grid img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.project-details{
    padding:80px 50px;
    background:#f8fafc;
}

.project-details h2{
    margin-bottom:25px;
}

.project-details ul{
    padding-left:25px;
    line-height:2;
}

/* THEN YOUR MOBILE SECTION */

.gallery-title{
    text-align:center;
    font-size:42px;
    color:#1673D1;
    font-weight:700;
    margin:20px 0 40px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.project-card{
    background:white;
    padding:30px;
    margin:25px 0;
    border-radius:12px;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);

    transition:all .35s ease;

    overflow:hidden;
}

.project-card:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);
}

.project-card img{
    transition:transform .5s ease;
}

.project-card:hover img{
    transform:scale(1.05);
}

.portfolio-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.portfolio-card h3{
    color:#1673D1;
    font-size:24px;
    font-weight:700;
    padding:25px 25px 10px;
}

.portfolio-card p{
    padding:0 25px 25px;
    font-size:20px;
    line-height:1.8;
    color:#555;
}

.portfolio-card{
    display:flex;
    flex-direction:column;
}

.portfolio-card p{
    flex-grow:1;
}

.portfolio-card .service-link{
    margin:0 25px 25px;
}

.portfolio-card .portfolio-link{
    margin:0 25px 25px;
}

.video-showcase{
    position:relative;
    width:100%;
    height:400px;
    overflow:hidden;
}

.video-showcase video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.video-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    z-index:2;
    background:rgba(0,0,0,.35);
    color:white;
    padding:20px;
}

.video-overlay h2{
    font-size:42px;
    margin-bottom:20px;
}

.video-overlay p{
    font-size:20px;
    margin-bottom:30px;
}

/* EQUAL HEIGHT SERVICE CARDS */

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    display:flex;
    flex-direction:column;
}

.service-content{
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.service-content p{
    flex-grow:1;
}

/* EQUAL HEIGHT PROJECT CARDS */

.project-card{
    display:flex;
    flex-direction:column;
}

.project-overlay{
    display:flex;
    flex-direction:column;
    flex-grow:1;
}

.project-overlay p{
    flex-grow:1;
}

/* FOOTER IMPROVEMENTS */

.footer{
    padding:60px 50px;
}

.footer-column h4{
    font-size:24px;
    margin-bottom:20px;
}

.footer-column li{
    margin-bottom:12px;
}

/* CTA IMPROVEMENTS */

.cta-content h2{
    font-size:56px;
}

.cta-content p{
    font-size:22px;
}

/* Portfolio Page Hero Size */

.hero.portfolio-hero{
    height:380px;
    min-height:380px;
}

.hero.portfolio-hero .hero-content{
    padding-top:0;
    padding-left:60px;
}

.hero.portfolio-hero .hero-content h1{
    font-size:48px;
    line-height:1;
}

.roofing-hero{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.55) 45%,
            rgba(0,0,0,.20) 100%
        ),
        url('/images/roofing-hero.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.custom-home-hero{
    background-image:
        linear-gradient(
            90deg,
            rgba(0,0,0,.70) 0%,
            rgba(0,0,0,.45) 45%,
            rgba(0,0,0,.15) 100%
        ),
        url('../images/new-new-hero-lcp-html.jpg');

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}

.process-section{
    padding:30px 50px 60px;
}

.process-section .section-heading{
    margin-bottom:30px;
}

@media(max-width:768px){

.header{
    flex-direction:column;
    padding:15px 20px;
}

.header-contact{
    display:none;
}

.section-heading h2{
    font-size:36px;
}

.navigation{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.navigation a{
    font-size:16px;
}

.logo{
    max-width:140px;
}

.hero{
    height:auto;
    min-height:60vh;
}

.hero-content{
    width:100%;
    max-width:100%;
    padding:20px;
    text-align:left;
}

.hero-content h1{
    font-size:42px;
    line-height:1.1;
    margin-bottom:15px;
}

.hero-tagline{
    font-size:11px;
    letter-spacing:2px;
}

.hero-subtext{
    font-size:16px;
    line-height:1.5;
}

.hero-buttons{
    flex-direction:column;
    gap:12px;
}

.primary-btn,
.secondary-btn{
    width:100%;
    text-align:center;
}

.trust-bar{
    grid-template-columns:1fr;
    gap:15px;
    padding:20px;
    font-size:14px;
}

.trust-bar div{
    padding:4px 0;
}

.services-grid,
.project-grid,
.testimonial-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.gallery-section,
.project-details{
    padding:50px 20px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-grid img{
    height:250px;
}

.portfolio-card h3{
    font-size:24px;
}

.portfolio-card p{
    font-size:16px;
}

.video-showcase{
    height:450px;
}

.video-overlay h2{
    font-size:36px;
}

.video-overlay p{
    font-size:18px;
}