.page-hero {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 110px;
}

.page-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.service-detail {
    padding: 80px 0;
    background: #fff;
    color: #000;
}
.service-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #bbb;
    line-height: 1.6;
}
.service-text-block {
    padding: 80px 0;
    background: #fff;
    color: #000;
}

.service-text-block h2 {
    text-align: center;
    margin-bottom: 20px;
}

.service-text-block p {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
    line-height: 1.6;
}

.service-text-block h3 {
    text-align: center;
    margin-bottom: 30px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.step {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
}

.contact-box {
    text-align: center;
    background: #020617;
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.contact-box strong {
    font-size: 20px;
    color: orange;
}

@media (max-width: 768px) {
    .steps {
        grid-template-columns: 1fr;
    }
}

.service-row {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .service-row {
        flex-direction: column;
    }
}
.service-benefits {
    padding: 80px 0;
    background: #020617;
    color: white;
    text-align: center;
}

.service-benefits h2 {
    margin-bottom: 40px;
}

.benefits-grid {
    display: flex;
    gap: 25px;
}

.benefit {
    flex: 1;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    transition: 0.3s;
}

.benefit i {
    font-size: 30px;
    color: orange;
    margin-bottom: 15px;
}

.benefit h4 {
    margin-bottom: 10px;
}

.benefit p {
    color: #aaa;
    font-size: 14px;
}

.benefit:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
    .benefits-grid {
        flex-direction: column;
    }
}

.service-gallery {
    padding: 80px 0;
    background: #f5f5f5;
    text-align: center;
    color: #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 80%;
}

.lightbox .close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.page-hero{
    padding:160px 0 80px;
    background:
    linear-gradient(
        rgba(2,6,23,0.85),
        rgba(2,6,23,0.85)
    ),
    url('images/page-banner.jpg');

    background-size:cover;
    background-position:center;

    text-align:center;
    color:white;
}

.page-hero h1{
    font-size:52px;
    margin-bottom:15px;
}

.page-hero p{
    color:#ccc;
    font-size:18px;
}

.breadcrumbs{
    margin-top:20px;
    font-size:14px;
    color:#aaa;
}

.breadcrumbs a{
    color:orange;
    text-decoration:none;
}

@media(max-width:768px){

    .page-hero{
        padding:130px 20px 60px;
    }

    .page-hero h1{
        font-size:32px;
    }

}
.page-content{

    max-width: 1100px;

    margin: auto;

    padding: 80px 20px;

}
.service-text{

    max-width:700px;

    margin: auto;

    text-align: center;

    line-height: 1.9;

}
.service-text h2{

    font-size:42px;

    margin-bottom:30px;

    margin-top:70px;

    line-height:1.2;

}
.service-hero{

    position:relative;

    min-height:700px;

    display:flex;

    align-items:center;

    background:url('images/services/lightning.jpg') center/cover no-repeat;

    overflow:hidden;

}

.service-hero .overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        90deg,
        rgba(2,6,23,0.95) 20%,
        rgba(2,6,23,0.55) 100%
    );

}

.hero-content{

    position:relative;

    z-index:2;

    max-width:700px;

    color:white;

}

.hero-content h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-content p{

    font-size:22px;

    line-height:1.7;

    margin-bottom:40px;

    color:#ddd;

}
```css
.service-hero{

    position:relative;

    min-height:700px;

    display:flex;

    align-items:center;

    padding:120px 0;

    overflow:hidden;

}

.hero-content{

    max-width:750px;

    color:white;

}

.service-badge{

    display:inline-block;

    background:orange;

    color:black;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    margin-bottom:30px;

}

.hero-content h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

}

.hero-content p{

    font-size:22px;

    line-height:1.8;

    color:#ddd;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-outline{

    border:2px solid white;

    color:white;

    padding:15px 35px;

    border-radius:50px;

    text-decoration:none;

    transition:0.3s;

}

.btn-outline:hover{

    background:white;

    color:black;

}

.page-content{

    max-width:1200px;

    margin:auto;

    padding:100px 20px;

}

.service-image{

    margin-bottom:80px;

}

.service-image img{

    width:100%;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.25);

}

.service-text{

    max-width:850px;

    margin:auto;

    text-align:center;

    font-size:18px;

    line-height:2;

}

.service-text h2{

    font-size:42px;

    margin-top:70px;

    margin-bottom:30px;

    line-height:1.2;

}

.service-cta{

    padding:120px 20px;

    background:#111827;

    color:white;

    text-align:center;

    border-radius:40px 40px 0 0;

}

.service-cta h2{

    font-size:48px;

    margin-bottom:20px;

}

.service-cta p{

    font-size:20px;

    color:#ccc;

    margin-bottom:40px;

}

@media(max-width:768px){

    .service-hero{

        min-height:600px;

        padding:100px 20px;

        text-align:center;

    }

    .hero-content h1{

        font-size:42px;

    }

    .hero-content p{

        font-size:18px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .service-text{

        font-size:17px;

    }

    .service-text h2{

        font-size:32px;

    }

    .service-cta h2{

        font-size:34px;

    }

}
```css id="y3m8q5"
.contact-info-section{

    padding:100px 20px 40px;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.contact-card{

    background:white;

    border-radius:24px;

    padding:50px 30px;

    text-align:center;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

}

.contact-icon{

    width:80px;

    height:80px;

    background:orange;

    color:black;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.contact-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.contact-card p{

    color:#666;

    font-size:18px;

}

.contact-section{

    padding:80px 20px 120px;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:stretch;

}

.contact-form-box{

    background:white;

    padding:50px;

    border-radius:30px;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

}

.contact-form-box h2{

    font-size:42px;

    margin-bottom:40px;

}

.contact-form-box form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form-box input,
.contact-form-box select,
.contact-form-box textarea{

    width:100%;

    padding:18px 20px;

    border:1px solid #ddd;

    border-radius:16px;

    font-size:16px;

}

.contact-form-box textarea{

    min-height:180px;

    resize:none;

}

.contact-map iframe{

    width:100%;

    height:100%;

    min-height:600px;

    border:none;

    border-radius:30px;

}

@media(max-width:992px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .contact-wrapper{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .contact-form-box{

        padding:35px 25px;

    }

    .contact-form-box h2{

        font-size:32px;

    }

}
 ```css id="m4q8x2"
.contact-info-section{

    padding:100px 20px 60px;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.contact-card{

    background:white;

    border-radius:24px;

    padding:50px 30px;

    text-align:center;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

    transition:0.3s;

}

.contact-card:hover{

    transform:translateY(-10px);

}

.contact-icon{

    width:80px;

    height:80px;

    background:orange;

    color:black;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.contact-card h3{

    font-size:28px;

    margin-bottom:15px;

}

.contact-card p{

    color:#666;

    font-size:18px;

    line-height:1.7;

}

.contact-card a{

    color:inherit;

    text-decoration:none;

}

.contact-map-section{

    padding:20px 20px 120px;

}

.map-box iframe{

    width:100%;

    height:600px;

    border:none;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.15);

}

@media(max-width:1200px){

    .contact-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .contact-grid{

        grid-template-columns:1fr;

    }

    .contact-card{

        padding:40px 25px;

    }

}
 


