/* OFFER PAGE */

.offer-hero{
    padding:180px 0 100px;
    background:
    linear-gradient(
    rgba(2,6,23,0.85),
    rgba(2,6,23,0.90)
    ),
    url('images/hero.jpg')
    center/cover no-repeat;
    text-align:center;
}

.offer-badge{
    display:inline-block;
    background:rgba(255,165,0,0.15);
    color:orange;
    padding:10px 20px;
    border-radius:50px;
    margin-bottom:25px;
    font-size:14px;
    border:1px solid rgba(255,165,0,0.25);
}

.offer-hero h1{
    font-size:54px;
    margin-bottom:20px;
}

.offer-hero p{
    max-width:700px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.8;
    font-size:18px;
}

.offer-section{
    padding:100px 0;
    background:#f8fafc;
}

.offer-wrapper{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:start;
}

.offer-info h2{
    font-size:38px;
    color:#020617;
    margin-bottom:35px;
}

.offer-features{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.offer-feature{
    background:white;
    padding:22px 25px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
}

.offer-feature i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,165,0,0.12);
    color:orange;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.offer-feature span{
    color:#020617;
    font-weight:600;
}

.offer-forms{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.offer-box{
    background:white;
    padding:40px;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.offer-box h2{
    color:#020617;
    margin-bottom:25px;
}

.offer-box form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.offer-box input,
.offer-box textarea{
    padding:16px;
    border-radius:10px;
    border:1px solid #e2e8f0;
    background:#f8fafc;
    outline:none;
    transition:0.3s;
    font-size:15px;
}

.offer-box textarea{
    min-height:140px;
    resize:none;
}

.offer-box input:focus,
.offer-box textarea:focus{
    border-color:orange;
    box-shadow:0 0 15px rgba(255,165,0,0.15);
}

.offer-box button{
    background:linear-gradient(45deg,orange,#ff6600);
    border:none;
    padding:16px;
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.offer-box button:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,100,0,0.3);
}

@media(max-width:992px){

    .offer-wrapper{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .offer-hero{
        padding:150px 0 80px;
    }

    .offer-hero h1{
        font-size:36px;
    }

    .offer-box{
        padding:25px;
    }

} 
/* OFFER TABS */

.offer-tabs{
    display:flex;
    background:#e2e8f0;
    padding:6px;
    border-radius:14px;
    margin-bottom:25px;
    gap:10px;
}

.tab-btn{
    flex:1;
    border:none;
    padding:16px;
    border-radius:10px;
    cursor:pointer;
    background:transparent;
    font-weight:600;
    transition:0.3s;
    font-size:15px;
}

.tab-btn.active{
    background:linear-gradient(45deg,orange,#ff6600);
    color:black;
    box-shadow:0 10px 25px rgba(255,100,0,0.25);
}

.tab-content{
    display:none;
}

.tab-content.active{
    display:block;
    animation:fadeTab 0.3s ease;
}

@keyframes fadeTab{

    from{
        opacity:0;
        transform:translateY(10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
 
/* BLOG */

.blog-hero{
    padding:180px 0 100px;
    background:
    linear-gradient(
    rgba(2,6,23,0.88),
    rgba(2,6,23,0.92)
    ),
    url('images/hero.jpg')
    center/cover no-repeat;

    text-align:center;
}

.blog-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(255,165,0,0.12);
    border:1px solid rgba(255,165,0,0.25);
    color:orange;
    margin-bottom:25px;
    font-size:14px;
}

.blog-hero h1{
    font-size:56px;
    margin-bottom:20px;
}

.blog-hero p{
    max-width:700px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.8;
    font-size:18px;
}

.blog-section{
    padding:100px 0;
    background:#f8fafc;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
    transition:0.3s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-image{
    position:relative;
    height:240px;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.4s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

.blog-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:
    linear-gradient(
    to top,
    rgba(0,0,0,0.65),
    rgba(0,0,0,0)
    );
}

.blog-content{
    padding:30px;
}

.blog-date{
    display:inline-block;
    margin-bottom:15px;
    font-size:13px;
    color:orange;
    font-weight:bold;
}

.blog-content h2{
    color:#020617;
    margin-bottom:15px;
    font-size:24px;
    line-height:1.4;
}

.blog-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:25px;
}

.blog-btn{
    display:inline-block;
    background:linear-gradient(45deg,orange,#ff6600);
    padding:14px 24px;
    border-radius:10px;
    color:black;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.blog-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(255,100,0,0.3);
}

@media(max-width:992px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .blog-hero{
        padding:150px 0 80px;
    }

    .blog-hero h1{
        font-size:38px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

}
 

.success-message{

    max-width:700px;

    margin:0 auto 40px;

    padding:30px;
 
    border-radius:24px;

    background:white;

    border-left:6px solid #22c55e;
    border-right:6px solid #22c55e;
    box-shadow:
    0 10px 40px rgba(0,0,0,0.08);

    text-align:center;
	
    animation:successFade 0.4s ease;
	margin-top:30px;
}

.success-message h3{

    font-size:28px;

    margin-bottom:10px;

    color:#111827;

}

.success-message p{

    color:#6b7280;

    line-height:1.8;

}

@keyframes successFade{

    from{

        opacity:0;
        transform:translateY(-10px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
 

.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;

    }

}
 


/* BLOG PAGE */

.blog-page{
    padding:140px 0 80px;
    background:#f8fafc;
    color:#000;
}

.blog-top{
    text-align:center;
    margin-bottom:60px;
}

.blog-top span{
    color:orange;
    font-weight:700;
    letter-spacing:1px;
    display:block;
    margin-bottom:15px;
}

.blog-top h1{
    font-size:48px;
    margin-bottom:15px;
    color:#020617;
}

.blog-top p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.7;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blog-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.35s;
    display:flex;
    flex-direction:column;
}

.blog-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.blog-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.4s;
}

.blog-card:hover img{
    transform:scale(1.05);
}

.blog-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    height:100%;
}

.blog-content h2{
    font-size:24px;
    margin-bottom:15px;
    color:#020617;
    line-height:1.4;
}

.blog-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
    flex:1;
}

.blog-btn{
    display:inline-block;
    background:linear-gradient(45deg,orange,#ff6600);
    color:#000;
    padding:14px 22px;
    border-radius:8px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.blog-btn:hover{
    transform:translateY(-3px);
}

@media(max-width:992px){

    .blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .blog-grid{
        grid-template-columns:1fr;
    }

    .blog-top h1{
        font-size:34px;
    }

    .blog-card img{
        height:220px;
    }

}
 
/* PAGINATION */

.pagination{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    margin-top:60px;
    flex-wrap:wrap;
}

.pagination a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    text-decoration:none;
    background:white;
    color:#020617;
    font-weight:bold;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    transition:0.3s;
}

.pagination a:hover{
    transform:translateY(-3px);
    background:orange;
    color:black;
}

.pagination a.active{
    background:linear-gradient(45deg,orange,#ff6600);
    color:black;
    box-shadow:0 15px 35px rgba(255,100,0,0.3);
}
 
/* PROJECT PAGE */

.project-hero{
    position:relative;
    height:500px;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.project-hero img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
}

.project-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.4)
    );
}

.project-hero-content{
    position:relative;
    z-index:2;
    max-width:700px;
    color:white;
}

.project-badge{
    display:inline-block;
    background:orange;
    color:black;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:bold;
    margin-bottom:20px;
}

.project-hero h1{
    font-size:52px;
    margin-bottom:20px;
    line-height:1.1;
}

.project-hero p{
    font-size:18px;
    color:#ddd;
    line-height:1.7;
}

/* DETAILS */

.project-details{
    padding:100px 0;
    background:#f8fafc;
    color:#000;
}

.project-grid{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
}

.project-content{
    background:white;
    padding:50px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.project-content h2{
    margin-bottom:25px;
    font-size:32px;
}

.project-text{
    line-height:1.9;
    color:#555;
    font-size:16px;
}

.project-sidebar{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.project-card-info,
.project-cta{
    background:white;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.project-card-info h3,
.project-cta h3{
    margin-bottom:25px;
    font-size:24px;
}

.info-item{
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #eee;
}

.info-item span{
    display:block;
    color:#777;
    font-size:14px;
    margin-bottom:8px;
}

.info-item strong{
    font-size:16px;
}

.project-cta p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

.project-btn{
    display:inline-block;
    background:linear-gradient(45deg,orange,#ff6600);
    color:black;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
    transition:0.3s;
}

.project-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 30px rgba(255,140,0,0.3);
}

/* MOBILE */

@media(max-width:768px){

    .project-hero{
        height:420px;
    }

    .project-hero h1{
        font-size:34px;
    }

    .project-grid{
        grid-template-columns:1fr;
    }

    .project-content{
        padding:30px;
    }

}
 

 
