
/*======================================
GOOGLE FONT
======================================*/

@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

/*======================================
ROOT
======================================*/

:root{

    --primary:#7D1D2F;
    --primary-dark:#611624;

    --heading:#1F2937;
 
    --text:#353535;

    --light:#FAF8F6;

    --white:#ffffff;

    --border:#E8E3DE;

    --radius:20px;

    --shadow:0 18px 45px rgba(0,0,0,.08);

    --transition:.35s ease;

}

/*======================================
COMMON
======================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:"Mulish",sans-serif;

    color:var(--text);

    overflow-x:hidden;

    background:#fff;

}

.architecture-hero{

    background:#FAF8F6 url(images/architecture-pattern.png) right top no-repeat;

}
span.section-tag {
    font-size: 16px;
    font-weight: 700;
}

img{

    width:100%;

    display:block;

}
.bg-light {
    background-color: #f3f3f3 !important;
}
a{

    text-decoration:none;

}

.container{

    width:90%;

    max-width:1280px;

    margin:auto;

}

/*======================================
BUTTONS
======================================*/

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    background:var(--primary);

    color:#fff;

    border-radius:50px;

    transition:var(--transition);

    font-size:17px;

    font-weight:600;

}

.btn-primary:hover{
background: linear-gradient(135deg, #C89B2C, #E4B73D);
    color: #FFFFFF;
    transform: translateY(-5px);
    box-shadow: 0 25px 45px rgba(200, 155, 44, .35);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:18px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:50px;

    transition:var(--transition);

    font-size:17px;

    font-weight:600;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

/*======================================
HERO
======================================*/

.construction-hero{

    position:relative;

    background:#FFFFFF;

    padding:75px 0 0;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    width:700px;

    height:700px;

    background:rgba(125,29,47,.04);

    border-radius:50%;

    top:-250px;

    right:-250px;

}

.hero-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:center;

}

.hero-subtitle{

    display:inline-block;

    background:#fff;

    border:1px solid var(--border);

    padding:10px 20px;

    border-radius:50px;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    margin-bottom:10px;

}

.hero-content h1{
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 10px;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content p{

    font-size:16px;

    line-height:28px;

    color:var(--text);

    max-width:640px;

    margin-bottom:35px;

}

.hero-buttons{

    display:flex;

    gap:20px;


}

.hero-trust{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;

    font-weight:600;

}

.trust-item i{

    color:var(--primary);

}

/*======================================
IMAGE
======================================*/

.image-box{

    position:relative;

}

.image-box img{

    border-radius:25px;

    box-shadow:var(--shadow);

    transition:.5s;

}

.image-box:hover img{

    transform:scale(1.03);

}

.experience-card{

    position:absolute;

    bottom:30px;

    left:-40px;

    background:#fff;

    width:220px;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:var(--shadow);

}

.experience-card h2{

    font-family:"Playfair Display";

    color:#022646;

    font-size:55px;

    margin-bottom:8px;

}

.experience-card span{

    font-size:15px;

    font-weight:600;

    color:#555;

}

/*======================================
BOTTOM STRIP
======================================*/

.hero-bottom-strip{

    background:#fff;

    margin-top:90px;

    border-top:1px solid var(--border);

}

.strip-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

}

.strip-item{

    text-align:center;

    padding:40px 20px;

    border-right:1px solid var(--border);

}

.strip-item:last-child{

    border:none;

}

.strip-item h3{

    font-family:"Playfair Display";

    color:var(--primary);

    font-size:40px;

    margin-bottom:10px;

}

.strip-item p{

    font-size:15px;

    font-weight:600;

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1200px){

.hero-grid{

grid-template-columns:1fr;

}

.hero-image{

max-width:700px;

margin:auto;

}

.experience-card{

left:20px;

}

}

@media(max-width:768px){

.construction-hero{

padding:50px 0 0;

}

.hero-content h1{

font-size:2.5rem;

}

.hero-buttons{

flex-direction:column;

}

.hero-trust{

grid-template-columns:1fr;

}

.strip-grid{

grid-template-columns:repeat(2,1fr);

}

.strip-item{

border-bottom:1px solid var(--border);
border-right:none !important;
}

}

@media(max-width:576px){

.hero-content h1{

font-size:2rem;

}

.strip-grid{

grid-template-columns:1fr;

}

.experience-card{

position:relative;

left:0;

bottom:0;

width:100%;

margin-top:20px;

}

}    












 
/*========================================
WHAT WE OFFER
========================================*/
#bg-lights {
    background-color: #e7e7e7 !important;
}
.offer-section{

    padding:75px 0;

}
section.offer-section.bg-light h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    color: #1F2937;
}
.offer-grid{
 
    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:30px;

}
section-header {
    text-align: center;
}

.offer-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px 35px;

    transition:var(--transition);

    box-shadow:0 8px 25px rgba(0,0,0,.03);

}

.offer-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.offer-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:#7D1D2F;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    margin-bottom:25px;

}

.offer-card h3{

    font-family:"Playfair Display",serif;

    font-size:24px;

    font-weight:500;

    line-height:34px;

    color:#1F2937;

    margin-bottom:18px;

}

.offer-card p{

    font-family:"Mulish",sans-serif;

    font-size:16px;

    font-weight:500;

    line-height:28px;

    color:#353535;

}

.offer-wide{

    grid-column:span 3;

}

@media(max-width:1100px){

.offer-grid{

grid-template-columns:repeat(2,1fr);

}

.offer-wide{

grid-column:auto;

}

}

@media(max-width:768px){

.offer-grid{

grid-template-columns:1fr;

}

}



 .section-header {
    text-align: center;
}

/*========================================
PROJECT TYPES
========================================*/
section.project-type-section h2 {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    color: #1F2937;
}
.project-type-section{
    padding:75px 0;
    background:#ffffff;
}

.project-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    margin-top:60px;

}

.project-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:0 8px 25px rgba(0,0,0,.03);

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.project-image{

    overflow:hidden;

}

.project-image img{

    width:100%;

    height:240px;

    object-fit:cover;

    transition:.5s;

}

.project-card:hover img{

    transform:scale(1.08);

}

.project-content{

    padding:25px;

}

.project-content h3{

    font-family:"Playfair Display",serif;

    font-size:22px;

    font-weight:500;

    line-height:34px;

    color:#1F2937;

    margin-bottom:12px;

}

.project-content p{

    font-family:"Mulish",sans-serif;

    font-size:16px;

    font-weight:500;

    line-height:26px;

    color:#353535;

}

@media(max-width:1200px){

.project-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.project-grid{

grid-template-columns:1fr;

}

.project-image img{

height:220px;

}

}    
 

.offer-card{

padding:30px;

}

.offer-card h3{

font-size:22px;

line-height:32px;

}

}    
 
 



 
/*=========================================
ARCHITECTURE ADVANTAGE
=========================================*/

.advantage-section{

    padding:75px 0;

    background:#ffffff;

}

.advantage-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:70px;

    align-items:center;

}

.advantage-left h2{

    font-family:"Playfair Display",serif;

    font-size:3rem;

    font-weight:600;

    line-height:1.1;

    color:#1F2937;

    margin:20px 0;

}

.advantage-left p{

    font-family:"Mulish",sans-serif;

    font-size:16px;

    font-weight:500;

    line-height:30px;

    color:#353535;

}

.advantage-quote{

    margin-top:40px;

    padding:35px;

    border-left:5px solid  #022646;

    background:#FAF8F6;

    border-radius:16px;

}

.advantage-quote i{

    color: #022646;

    font-size:28px;

    margin-bottom:20px;

}

.advantage-quote h3{

    font-family:"Playfair Display",serif;

    font-size:28px;

    font-weight:500;

    line-height:40px;

    color:#1F2937;

}

.advantage-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.advantage-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:var(--transition);

    box-shadow:0 8px 25px rgba(0,0,0,.03);

}

.advantage-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.advantage-card i{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#7D1D2F;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

}

.advantage-card h4{

    font-family:"Playfair Display",serif;

    font-size:22px;

    font-weight:500;

    line-height:32px;

    color:#1F2937;

}

section.advantage-section {
    padding: 75px 0px 75px 0px !important;
}

@media(max-width:991px){

.advantage-wrapper{

grid-template-columns:1fr;

}

.advantage-right{

grid-template-columns:1fr;

}

.advantage-left h2{

font-size:2.3rem;

}

}    
 



 
/*=========================================
FINAL CTA
=========================================*/

.final-cta{

    position:relative;

    padding:140px 0;

    background:url("images/cta-bg.jpg") center center/cover no-repeat;

    overflow:hidden;

}

.cta-overlay{

    position:absolute;

    inset:0;

    background:rgba(31,41,55,.82);

}

.final-cta .container{

    position:relative;

    z-index:2;

}

.cta-content{

    max-width:850px;

    margin:0 auto;

    text-align:center;

}

.final-cta .section-tag{

    

    color:#fff;
 

}

.cta-content h2{

    font-family:"Playfair Display",serif;

    font-size:3rem;

    font-weight:600;

    line-height:1.2;

    color:#fff;

    margin:20px 0;

}

.cta-content p{

    font-family:"Mulish",sans-serif;

    font-size:18px;

    font-weight:500;

    line-height:32px;

    color:rgba(255,255,255,.9);

    max-width:760px;

    margin:0 auto 40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

}

.final-cta .btn-primary{

    min-width:260px;

}

@media(max-width:768px){

.final-cta{

padding:90px 0;

}

.cta-content h2{

font-size:2.2rem;

}

.cta-content p{

font-size:16px;

line-height:28px;

}

.final-cta .btn-primary{

width:100%;

}

}    



 
/*======================================
OTHER MATERIALS
======================================*/
.materials-list-section h2{
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    color: #1F2937;
}
.materials-list-section{

    padding:110px 0;

    background:#fff;

}

.materials-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.material-card{

    display:flex;

    align-items:center;

    gap:25px;

    background:#fff;

    border:1px solid #7D1D2F;

    border-radius:20px;

    padding:20px;

    transition:var(--transition);

    box-shadow:0 8px 25px rgba(0,0,0,.03);

}

.material-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.material-image{

    flex:0 0 170px;

}

.material-image img{

    width:170px;

    height:150px;

    object-fit:cover;

    border-radius:16px;

}

.material-content{

    flex:1;

}

.material-content h3{

    font-family:"Playfair Display",serif;

    font-size:24px;

    font-weight:500;

    line-height:34px;

    color:#1F2937;

    margin-bottom:12px;

}

.material-content p{

    font-family:"Mulish",sans-serif;

    font-size:16px;

    font-weight:500;

    line-height:28px;

    color:#353535;

}

@media(max-width:992px){

.materials-grid{

grid-template-columns:1fr;

}

.material-card{

flex-direction:column;
 
align-items:flex-start;

}

.material-image{

width:100%;

}

.material-image img{

width:100%;

height:220px;

}

}   






 
/*=====================================
PORTFOLIO CATEGORIES
=====================================*/
.portfolio-category-section h2{
        font-family: "Playfair Display", serif;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 600;
    color: #1F2937;
}
.portfolio-category-section{
    padding:75px 0;
    background:#f3f3f3 !important;
}

.portfolio-category-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.portfolio-category-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    height:420px;

    cursor:pointer;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.portfolio-category-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.portfolio-category-card:hover img{

    transform:scale(1.08);

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:40px;

    background:linear-gradient(to top,
        rgba(0,0,0,.82),
        rgba(0,0,0,.10));

}

.category-label{

    display:inline-block;

    width:max-content;

    background:#7D1D2F;

    color:#fff;

    padding:8px 20px;

    border-radius:40px;

    font-family:"Mulish",sans-serif;

    font-size:14px;

    font-weight:700;

    margin-bottom:18px;

}

.portfolio-overlay h3{

    font-family:"Playfair Display",serif;

    font-size:28px;

    font-weight:500;

    line-height:40px;

    color:#fff;

}

@media(max-width:991px){

.portfolio-category-grid{

grid-template-columns:1fr;

}

.portfolio-category-card{

height:360px;

}

}

@media(max-width:768px){

.portfolio-overlay{

padding:30px;

}

.portfolio-overlay h3{

font-size:22px;

line-height:34px;

}

}    


















 
/*======================================
COMMON SERVICE SECTION
======================================*/

.service-section{

    padding:110px 0;

}

.bg-light{

    background:#FAF8F6;

}

.service-grid{

    display:grid;

    grid-template-columns:1fr 520px;

    gap:70px;

    align-items:center;

    margin-bottom:60px;

}

.service-label{

    display:inline-block;

    padding:10px 22px;

    background:#F8F2F3;

    color:var(--primary);

    border-radius:50px;

    font-weight:700;

    margin-bottom:20px;

}

.service-details h2{

    font-family:"Playfair Display";

    font-size:3rem;

    color:var(--heading);

    margin-bottom:15px;

}

.service-details h3{

    font-family:"Playfair Display";

    font-size:24px;

    color:var(--primary);

    margin-bottom:25px;

}

.service-details p{

    margin-bottom:35px;

    line-height:30px;

}

.service-image img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.service-info-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.info-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px;

    transition:.35s;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.info-card h4{

    font-family:"Playfair Display";

    font-size:26px;

    color:var(--heading);

    margin-bottom:25px;

}

.info-card ul{

    list-style:none;

}

.info-card li{

    position:relative;

    padding-left:32px;

    margin-bottom:18px;

    line-height:28px;

}

.info-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    width:22px;

    height:22px;

    background:var(--primary);

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:12px;

}

.service-note{

    margin-top:40px;

    background:#fff;

    border-left:5px solid var(--primary);

    padding:35px;

    border-radius:12px;

    box-shadow:var(--shadow);

}

.service-note p{

    margin:0;

    line-height:30px;

}

@media(max-width:1100px){

.service-grid{

grid-template-columns:1fr;

}

.service-info-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.service-details h2{

font-size:2.2rem;

}

.service-details h3{

font-size:22px;

}

.info-card{

padding:30px;

}

}    


 
 
/*======================================
REVERSE LAYOUT
======================================*/

.reverse{

    grid-template-columns:520px 1fr;

}

/*======================================
FEATURE GRID
======================================*/

.feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.feature-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:var(--transition);

    box-shadow:0 8px 25px rgba(0,0,0,.03);

}

.feature-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.feature-card i{

    width:70px;

    height:70px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:var(--primary);

    color:#fff;

    font-size:26px;

}

.feature-card h4{

    font-family:"Playfair Display",serif;

    font-size:22px;

    font-weight:500;

    line-height:34px;

    color:var(--heading);

}

@media(max-width:1100px){

.reverse{

grid-template-columns:1fr;

}

.feature-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.feature-grid{

grid-template-columns:1fr;

}

.feature-card{

padding:28px;

}

.feature-card h4{

font-size:20px;

line-height:30px;

}

} 



}


  



.commercial-section h2 {
    color: #ffff;
}

.commercial-section{
    padding:75px 0px;
}
.commercial-section h2, .commercial-section h3, .commercial-section p {
    color: #ffffff;
}

.commercial-section .section-header{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.commercial-section .section-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#F8F2F3;

    color:#7D1D2F;

    font-family:"Mulish",sans-serif;

    font-size:15px;

    font-weight:700;

    margin-bottom:20px;

}

.commercial-section h2{

    font-family:"Playfair Display",serif;

    font-size:3rem;

    font-weight:600;

    color:#1F2937;

    margin-bottom:18px;

}

.commercial-section h3{

    font-family:"Playfair Display",serif;

    font-size:24px;

    font-weight:500;

    line-height:36px;

    color:#7D1D2F;

    margin-bottom:25px;

}

.commercial-section p{

    font-family:"Mulish",sans-serif;

    font-size:16px;

    font-weight:500;

    line-height:30px;

    color:#353535;

}

.commercial-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}

.commercial-card{

    background:#fff;

    border:1px solid #E8E3DE;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.commercial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.commercial-icon{

    width:70px;

    height:70px;

    margin:auto auto 25px;

    border-radius:50%;

    background:#7D1D2F;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:26px;

    transition:.35s;

}

.commercial-card:hover .commercial-icon{

    background:#5E1724;

    transform:rotate(8deg);

}

.commercial-card h4{

    font-family:"Playfair Display",serif;

    font-size:22px;

    font-weight:500;

    line-height:34px;

    color:#1F2937;

}

@media(max-width:1200px){

.commercial-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.commercial-section{

padding:80px 0;

}

.commercial-section h2{

font-size:2.3rem;

}

.commercial-section h3{

font-size:22px;

}

.commercial-grid{

grid-template-columns:1fr;

}

}    
 





 
/*======================================
INTERIOR PACKAGE
======================================*/

.package-grid{

    grid-template-columns:repeat(3,1fr);

}

.package-card{

    text-align:left;

}

.package-card .btn-primary{

    width:100%;

    margin-top:25px;

    justify-content:center;

}

.featured{

    transform:scale(1.03);

    border:2px solid var(--primary);

}

.featured:hover{

    transform:translateY(-10px) scale(1.03);

}

@media(max-width:992px){

.package-grid{

grid-template-columns:1fr;

}

.featured{

transform:none;

}

.featured:hover{

transform:translateY(-8px);

}

}    
 
/*=====================================
PACKAGE SECTION
=====================================*/

/*==========================================
GLOBAL TYPOGRAPHY SYSTEM
==========================================*/

.section-header{
    max-width:900px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    padding:10px 24px;
    border-radius:50px;
    background:#F8F2F3;
    color:#7D1D2F;
    font-family:"Mulish",sans-serif;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-header h2,
.service-details h2{

    font-family:"Playfair Display",serif;
    font-size:3rem;
    font-weight:600;
    line-height:1.1;
    color:#1F2937;
    margin-bottom:18px;

}

.section-header h3,
.service-details h3{

    font-family:"Playfair Display",serif;
    font-size:24px;
    font-weight:500;
    line-height:36px;
    color:#7D1D2F;
    margin-bottom:22px;

}

.section-header p,
.service-details p{

    font-family:"Mulish",sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:30px;
    color:#353535;
}

.package-section{

    padding:110px 0;

    background:#FAF8F6;

}

.package-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.package-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:40px 35px;

    position:relative;

    transition:var(--transition);

    box-shadow:0 8px 25px rgba(0,0,0,.03);

}

.package-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow);

}

.recommended{

    position:absolute;

    top:-15px;

    left:50%;

    transform:translateX(-50%);

    background:#7D1D2F;

    color:#fff;

    padding:8px 20px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

.package-card h3{

    font-family:"Playfair Display",serif;

    font-size:30px;

    color:#1F2937;

    margin-bottom:20px;

}

.price{

    font-family:"Mulish",sans-serif;

    color:#7D1D2F;

    font-size:18px;

    font-weight:700;

    margin-bottom:30px;

}

.package-card ul{

    list-style:none;

}

.package-card li{

    position:relative;

    padding-left:30px;

    margin-bottom:18px;

    font-family:"Mulish",sans-serif;

    font-size:16px;

    line-height:28px;

    color:#353535;

}

.package-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    top:3px;

    width:20px;

    height:20px;

    border-radius:50%;

    background:#7D1D2F;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:11px;

}

.package-note{

    margin-top:60px;

    text-align:center;

}

.package-note p{

    margin-bottom:30px;

    font-family:"Mulish",sans-serif;

    font-size:16px;

    line-height:30px;

}

@media(max-width:1200px){

.package-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.package-grid{

grid-template-columns:1fr;

}

.package-card{

padding:30px;

}

}    



 
/*======================================
PROJECT TYPES
======================================*/

.project-type-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.project-type-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:0 8px 25px rgba(0,0,0,.03);

}

.project-type-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.project-type-image{

    overflow:hidden;

}

.project-type-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.project-type-card:hover .project-type-image img{

    transform:scale(1.08);

}

.project-type-content{

    padding:30px;

}

.project-type-content h3{

    font-family:"Playfair Display",serif;

    font-size:24px;

    font-weight:500;

    line-height:34px;

    color:#1F2937;

    margin-bottom:12px;

}

.project-type-content p{

    font-family:"Mulish",sans-serif;

    font-size:16px;

    font-weight:500;

    line-height:28px;

    color:#353535;

}

@media(max-width:992px){

.project-type-grid{

grid-template-columns:1fr;

}

.project-type-image img{

height:240px;

}

} 






 
/*=========================================
CURRENT OPENINGS
=========================================*/

.career-openings{

    padding:110px 0;

    background:#FAF8F6;

}

/*=========================================
SECTION HEADING
=========================================*/

.career-openings .section-title{

    max-width:850px;

    margin:0 auto 70px;

    text-align:center;

}

.career-openings .section-tag{

    display:inline-block;

    padding:10px 22px;

    background:#7D1D2F;

    color:#fff;

    border-radius:50px;

    font-family:"Mulish",sans-serif;

    font-size:14px;

    font-weight:700;

    letter-spacing:.5px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.career-openings .section-title h2{

    font-family:"Playfair Display",serif;

    font-size:3rem;

    font-weight:600;

    line-height:1.1;

    color:#1F2937;

    margin-bottom:20px;

}

.career-openings .section-title p{

    font-family:"Mulish",sans-serif;

    font-size:17px;

    font-weight:500;

    line-height:32px;

    color:#555;

    margin:0;

}

/*=========================================
JOB GRID
=========================================*/

.job-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}

.job-card{

    background:#fff;

    border:1px solid #ECECEC;

    border-radius:22px;

    padding:35px;

    transition:.35s;

    display:flex;

    flex-direction:column;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.job-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

/*=========================================
JOB HEADER
=========================================*/

.job-top{

    margin-bottom:25px;

}

.job-type{

    display:inline-block;

    background:#7D1D2F;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-family:"Mulish",sans-serif;

    font-size:13px;

    font-weight:700;

    margin-bottom:18px;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.job-top h3{

    font-family:"Playfair Display",serif;

    font-size:30px;

    font-weight:500;

    line-height:1.3;

    color:#1F2937;

    margin:0;

}

/*=========================================
JOB LIST
=========================================*/

.job-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.job-card ul li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

    font-family:"Mulish",sans-serif;

    font-size:16px;

    font-weight:500;

    line-height:28px;

    color:#555;

}

.job-card ul li i{

    color:#7D1D2F;

    width:20px;

    margin-top:4px;

}

/*=========================================
BUTTON
=========================================*/

.job-card .btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    margin-top:auto;

    background:#7D1D2F;

    color:#fff;

    text-decoration:none;

    font-family:"Mulish",sans-serif;

    font-size:17px;

    font-weight:600;

    padding:18px 28px;

    border-radius:8px;

    transition:.35s;

}

.job-card .btn-primary:hover{

    background:#5F1524;

    color:#fff;

    transform:translateY(-2px);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:992px){

.job-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.career-openings{

padding:80px 0;

}

.career-openings .section-title{

margin-bottom:50px;

}

.career-openings .section-title h2{

font-size:2.2rem;

}

.career-openings .section-title p{

font-size:16px;

line-height:30px;

}

.job-card{

padding:28px;

}

.job-top h3{

font-size:24px;

}

}    
 
 






/*=========================================
SERVICE INTRODUCTION
=========================================*/

.service-introduction{
    padding:110px 0;
    background:#ffffff;
}

.service-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
    margin-top:60px;
}

.image-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.image-wrapper img{
    width:100%;
    height:620px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.image-wrapper:hover img{
    transform:scale(1.05);
}

.floating-box{
    position:absolute;
    left:30px;
    bottom:30px;
    background:#ffffff;
    padding:22px 28px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    max-width:280px;
}

.floating-box h3{
    margin:0 0 8px;
    font-family:"Playfair Display",serif;
    font-size:30px;
    font-weight:600;
    color:#7D1D2F;
}

.floating-box span{
    display:block;
    font-family:"Mulish",sans-serif;
    font-size:15px;
    line-height:24px;
    color:#353535;
}

.service-content p{
    margin-bottom:25px;
    font-family:"Mulish",sans-serif;
    font-size:16px;
    font-weight:500;
    line-height:30px;
    color:#353535;
}

.intro-features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:70px;
}

.intro-card{
    display:flex;
    gap:18px;
    align-items:flex-start;
    padding:30px;
    background:#FAF8F6;
    border:1px solid #EFE7E4;
    border-radius:18px;
    transition:.35s;
}

.intro-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.intro-card i{
    width:60px;
    height:60px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#7D1D2F;
    color:#fff;
    border-radius:50%;
    font-size:22px;
}

.intro-card h4{
    margin:0 0 8px;
    font-family:"Playfair Display",serif;
    font-size:22px;
    font-weight:500;
    line-height:30px;
    color:#1F2937;
}

.intro-card span{
    display:block;
    font-family:"Mulish",sans-serif;
    font-size:15px;
    line-height:24px;
    color:#353535;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

    .service-layout{
        grid-template-columns:1fr;
        gap:50px;
    }

    .image-wrapper img{
        height:450px;
    }

    .intro-features{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .service-introduction{
        padding:80px 0;
    }

    .image-wrapper img{
        height:320px;
    }

    .floating-box{
        left:20px;
        right:20px;
        bottom:20px;
        max-width:none;
        padding:18px;
    }

    .floating-box h3{
        font-size:24px;
    }

    .intro-features{
        grid-template-columns:1fr;
    }

    .intro-card{
        padding:22px;
    }

} 





 
.testimonial-slider-section{
    padding:110px 0;
    background:#FAF8F6;
}

.testimonial-card{
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    border:1px solid #ececec;
}

.testimonial-top{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:30px;
}

.testimonial-top img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #7D1D2F;
}

.testimonial-top h3{
    font-family:"Playfair Display",serif;
    font-size:28px;
    color:#1F2937;
    margin-bottom:5px;
}

.testimonial-top span{
    font-family:"Mulish",sans-serif;
    color:#666;
}

.stars{
    margin-top:10px;
    color:#F5B301;
}

.testimonial-card p{
    font-family:"Mulish",sans-serif;
    font-size:17px;
    line-height:32px;
    color:#353535;
    font-style:italic;
}

.testimonial-footer{
    margin-top:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-top:1px solid #eee;
    padding-top:20px;
}

.google-link{
    color:#7D1D2F;
    text-decoration:none;
    font-weight:700;
}

.swiper-button-next,
.swiper-button-prev{
    color:#022646 !important;
}

.swiper-pagination-bullet-active{
    background:#022646 !important;
}    



.final-cta .section-tag {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .15);
}










 
/*========================================
TURNKEY
========================================*/

.turnkey-section{

    padding:110px 0;

    background:#fff;

}

.turnkey-process{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

    position:relative;

}

.turnkey-process::before{

    content:"";

    position:absolute;

    top:35px;

    left:10%;

    right:10%;

    height:2px;

    background:#E8E3DE;

    z-index:1;

}

.process-item{

    position:relative;

    text-align:center;

    z-index:2;

}

.process-number{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#7D1D2F;

    color:#fff;

    font-family:"Playfair Display",serif;

    font-size:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.process-item:hover .process-number{

    transform:scale(1.1);

    background:#5E1724;

}

.process-item h4{

    font-family:"Playfair Display",serif;

    font-size:22px;

    font-weight:500;

    color:#1F2937;

}

@media(max-width:992px){

.turnkey-process{

grid-template-columns:repeat(2,1fr);

}

.turnkey-process::before{

display:none;

}

}

@media(max-width:768px){

.turnkey-process{

grid-template-columns:1fr;

}


.btn-primary {
    padding: 18px 15px !important;
    font-size: 16px  !important;
}
.strip-item h3{
    font-size:2rem;
}
section.offer-section.bg-light h2, section.project-type-section h2, .advantage-left h2, .cta-content h2, .elementor-4024 .elementor-element.elementor-element-ca76b7f .elementor-heading-title, .section-header h2, .service-details h2{
    font-size:2rem;
}


.turnkey-process {
    display: none;
}
.turnkey-section{
    padding:75px 0px;
}
}    
 




 