:root {
    --brand: #d71968;
    --brand-dark: #b90e55;
    --green: #82b840;
    --dark: #151515;
    --text: #303030;
    --muted: #6d6d6d;
    --light: #f6f6f6
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, sans-serif;
    color: var(--text);
    background: #fff
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Montserrat, sans-serif
}

a {
    text-decoration: none
}

.topbar{
    background:#151515;
    color:#fff;
    font-size:12px;
    padding:8px 0;
}

.topbar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.topbar-contact{
    display:flex;
    align-items:center;
    gap:24px;
    flex-wrap:wrap;
}

.topbar-contact span{
    white-space:nowrap;
    color:#d7d7d7;
}

.topbar-contact i{
    color:var(--brand);
    margin-right:6px;
    font-size:12px;
}

.topbar-social{
    display:flex;
    align-items:center;
    gap:15px;
}

.topbar-social a{
    color:#fff;
    font-size:13px;
    transition:.2s;
}

.topbar-social a:hover{
    color:var(--brand);
}

.header-scrolled .main-navbar{
    box-shadow:0 5px 25px rgba(0,0,0,.1);
}

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
}

.main-navbar{
    min-height:76px;
    background:#fff;
    box-shadow:0 3px 18px rgba(0,0,0,.07);
}

.navbar-brand{
    padding:0;
    margin:0;
}

.navbar-brand img{
    width:100px;
    height:auto;
    display:block;
}

.navbar-nav{
    gap:2px;
}

.nav-link{
    position:relative;
    color:#202020!important;
    font-size:14px;
    font-weight:600;
    padding:29px 15px!important;
    transition:.2s;
}

.nav-link:before{
    content:"";
    position:absolute;
    left:15px;
    right:15px;
    bottom:18px;
    height:2px;
    background:var(--brand);
    transform:scaleX(0);
    transform-origin:center;
    transition:.2s;
}

.nav-link:hover,
.nav-link.active{
    color:var(--brand)!important;
}

.nav-link:hover:before,
.nav-link.active:before{
    transform:scaleX(1);
}

.nav-link.dropdown-toggle::after{
    margin-left:5px;
    vertical-align:2px;
    font-size:14px;
}

.header-action{
    margin-left:20px;
}

.header-action .btn{
    white-space:nowrap;
}

.mega-menu-parent{
    position:static;
}

.mega-menu{
    position:absolute;
    top:100%;
    left:0;
    right:0;
    width:100%;
    margin:0;
    padding:30px 0 35px;
    border:0;
    border-radius:0;
    background:#fff;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.mega-menu-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    padding:0 20px 22px;
    border-bottom:1px solid #ededed;
    margin-bottom:4px;
}

.mega-eyebrow{
    display:block;
    color:var(--brand);
    text-transform:uppercase;
    letter-spacing:3px;
    font-size:9px;
    font-weight:800;
    margin-bottom:7px;
}

.mega-menu-header h3{
    margin:0;
    font-size:19px;
    font-weight:700;
    color:#171717;
}

.mega-view-all{
    color:var(--brand);
    font-size:14px;
    font-weight:700;
    white-space:nowrap;
}

.mega-view-all i{
    margin-left:5px;
}

.mega-product-grid{
    border-left:1px solid #eee;
}

.mega-product-item{
    position:relative;
    display:flex;
    align-items:flex-start;
    gap:14px;
    min-height:125px;
    padding:20px 22px;
    border-right:1px solid #eee;
    border-bottom:1px solid #eee;
    color:#222;
    transition:.25s;
}

.mega-product-item:hover{
    background:#fff6f9;
    color:#222;
}

.mega-product-number{
    flex:0 0 auto;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #eee;
    color:var(--brand);
    font:700 9px Montserrat;
    transition:.25s;
}

.mega-product-item:hover .mega-product-number{
    background:var(--brand);
    color:#fff;
    border-color:var(--brand);
}

.mega-product-content{
    padding-right:20px;
}

.mega-product-content h4{
    font-size:13px;
    line-height:1.4;
    text-transform:uppercase;
    margin:0 0 9px;
    font-weight:700;
}

.mega-product-items{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.mega-product-items span{
    color:#777;
    font-size:12px;
    line-height:1.35;
}

.mega-arrow{
    position:absolute;
    right:18px;
    bottom:18px;
    color:#bbb;
    font-size:12px;
    transition:.25s;
}

.mega-product-item:hover .mega-arrow{
    color:var(--brand);
    transform:translate(2px,-2px);
}

.navbar-toggler{
    border:1px solid #ddd;
    border-radius:2px;
    padding:7px 9px;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.btn-brand {
    background: var(--brand);
    border: 1px solid var(--brand);
    color: #fff;
    padding: 11px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 2px
}

.btn-brand:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff
}

.btn-outline-brand {
    border: 1px solid var(--brand);
    color: var(--brand);
    padding: 11px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 2px
}

.btn-outline-brand:hover {
    background: var(--brand);
    color: #fff
}
 
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    display: block;
    margin-bottom: 10px
}


/*  */



.hero-section{
    position:relative;
    overflow:hidden;
}

.hero-slide{
    position:relative;
    min-height:500px;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(255,255,255,.99) 0%,
        rgba(255,255,255,.96) 30%,
        rgba(255,255,255,.65) 48%,
        rgba(255,255,255,.08) 72%,
        rgba(0,0,0,.05) 100%
    );
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:590px;
    padding:75px 0 70px;
}

.hero-content .eyebrow{
    margin-bottom:13px;
}

.hero-content h1{
    font-family:Montserrat,sans-serif;
    font-size:47px;
    line-height:1.04;
    font-weight:800;
    color:#171717;
    margin:0 0 14px;
    text-transform:uppercase;
}

.hero-content h1 strong{
    color:var(--brand);
}

.hero-subtitle{
    font-size:16px;
    font-weight:600;
    line-height:1.5;
    margin:0 0 10px;
    color:#202020;
}

.hero-description{
    max-width:530px;
    color:#626262;
    font-size:12px;
    line-height:1.7;
    margin:0;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:25px;
}

.hero-actions .btn{
    min-width:135px;
}

.hero-points{
    display:flex;
    align-items:center;
    gap:30px;
    margin-top:27px;
}

.hero-point{
    display:flex;
    align-items:center;
    gap:8px;
}

.hero-point i{
    color:var(--brand);
    font-size:20px;
}

.hero-point span{
    font-size:10px;
    font-weight:700;
    color:#333;
}

.hero-signature{
    position:absolute;
    z-index:3;
    right:5%;
    bottom:38px;
    color:#fff;
    font-family:cursive;
    font-size:24px;
    line-height:1.05;
    transform:rotate(-6deg);
    text-align:center;
    text-shadow:0 2px 10px rgba(0,0,0,.35);
}

.hero-control{
    width:42px;
    height:42px;
    top:50%;
    transform:translateY(-50%);
    margin:0 18px;
    border-radius:50%;
    background:rgba(0,0,0,.3);
    opacity:.7;
}

.hero-control:hover{
    background:var(--brand);
    opacity:1;
}

.carousel-indicators{
    z-index:5;
    margin-bottom:18px;
}

.carousel-indicators button{
    width:7px;
    height:7px;
    border:0;
    border-radius:50%;
    margin:0 4px;
    opacity:.55;
}

.carousel-indicators button.active{
    background:var(--brand);
    opacity:1;
}






/*  */







.section-space {
    padding: 75px 0
}

 .about-section{
    background:#fff;
}

.about-image{
    position:relative;
    height:330px;
    overflow:hidden;
}

.about-image:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:35%;
    background:linear-gradient(transparent,rgba(0,0,0,.35));
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.about-image:hover img{
    transform:scale(1.04);
}

.about-image-badge{
    position:absolute;
    z-index:2;
    left:22px;
    bottom:20px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
}

.about-image-badge strong{
    font:800 30px Montserrat;
    color:#fff;
}

.about-image-badge span{
    font-size:9px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-content h2{
    font-family:Montserrat,sans-serif;
    font-size:29px;
    line-height:1.18;
    font-weight:700;
    color:#171717;
    margin:0;
}

.about-content h2 strong{
    display:block;
    color:var(--brand);
    font-weight:800;
}

.about-content .section-line{
    margin:18px 0;
}

.about-content p{
    font-size:12px;
    line-height:1.8;
    color:#666;
    margin-bottom:22px;
}

.stats-list{
    border-left:1px solid #ddd;
    padding-left:25px;
}

.stat-item{
    margin-bottom:25px;
}

.stat-item:last-child{
    margin-bottom:0;
}

.stat-item strong{
    display:block;
    font-family:Montserrat,sans-serif;
    font-size:25px;
    line-height:1;
    font-weight:800;
    color:var(--brand);
    margin-bottom:6px;
}

.stat-item span{
    display:block;
    max-width:100px;
    font-size:9px;
    line-height:1.4;
    color:#666;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.about-section h2,
.why-section h2, 
.contact-section h2 {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 12px
}

.about-section h2 strong {
    color: var(--brand)
}

.section-line {
    width: 42px;
    height: 3px;
    background: var(--brand);
    margin: 17px 0
}

.about-section p,
.why-section p {
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted)
}

.stats-list {
    border-left: 1px solid #ddd;
    padding-left: 25px
}

.stat-item {
    margin-bottom: 18px
}

.stat-item strong {
    display: block;
    font: 800 23px Montserrat;
    color: var(--brand)
}

.stat-item span {
    font-size: 12px;
    color: #666
}

.products-section{
    background:#f7f7f7;
}

.products-heading{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    margin-bottom:40px;
}

.products-heading h2{
    font-family:Montserrat,sans-serif;
    font-size:29px;
    line-height:1.15;
    font-weight:700;
    margin:0;
    color:#171717;
}

.products-heading h2 strong{
    color:var(--brand);
}

.products-heading-right{
    max-width:390px;
}

.products-heading-right p{
    margin:0 0 12px;
    font-size:11px;
    line-height:1.7;
    color:#777;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.product-card{
    position:relative;
    background:#fff;
    border:1px solid #e8e8e8;
    transition:transform .3s ease,box-shadow .3s ease;
    overflow:hidden;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.09);
}

.product-image{
    position:relative;
    display:block;
    height:205px;
    background:#ddd;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.product-card:hover .product-image img{
    transform:scale(1.06);
}

.product-image:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,0) 45%,
        rgba(0,0,0,.38) 100%
    );
}

.product-number{
    position:absolute;
    z-index:2;
    top:14px;
    left:14px;
    width:32px;
    height:32px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:var(--brand);
    font:700 9px Montserrat;
}

.product-image-arrow{
    position:absolute;
    z-index:2;
    right:14px;
    bottom:14px;
    width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.7);
    color:#fff;
    transition:.25s;
}

.product-card:hover .product-image-arrow{
    background:var(--brand);
    border-color:var(--brand);
}

.product-body{
    padding:22px 20px 23px;
}

.product-category{
    display:block;
    color:var(--brand);
    text-transform:uppercase;
    letter-spacing:1.5px;
    font-size:8px;
    font-weight:800;
    margin-bottom:8px;
}

.product-body h3{
    font-family:Montserrat,sans-serif;
    font-size:14px;
    line-height:1.35;
    font-weight:700;
    text-transform:uppercase;
    color:#171717;
    min-height:38px;
    margin:0 0 13px;
}

.product-items{
    min-height:50px;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.product-items span{
    display:block;
    color:#777;
    font-size:9px;
    line-height:1.4;
}

.product-items i{
    color:var(--brand);
    font-size:12px;
    margin-right:2px;
}

.product-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:18px;
    color:#222;
    font-size:9px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.7px;
    transition:.2s;
}

.product-link i{
    color:var(--brand);
    transition:.2s;
}

.product-link:hover{
    color:var(--brand);
}

.product-link:hover i{
    transform:translateX(4px);
}

.products-section{
    background: #f7f7f7
}

.section-heading {
    margin-bottom: 30px
}

.section-heading h2 {
    font-size: 24px;
    margin: 0 0 6px
}

.section-heading p {
    font-size: 14px;
    color: #777
}

.product-card {
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    transition: .25s
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px #00000012
}

.product-image {
    height: 175px;
    background: #f1f1f1;
    overflow: hidden
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-body {
    padding: 17px
}

.product-body h3 {
    font-size: 15px;
    line-height: 1.25;
    text-transform: uppercase;
    margin-bottom: 10px
}

.product-body span {
    display: block;
    font-size: 13px;
    color: #777;
    margin-bottom: 3px
}

.product-link,
.text-link {
    display: inline-block;
    color: var(--brand);
    font-size: 10px;
    font-weight: 800;
    margin-top: 14px
}
 
.why-section{
    background:#fff;
}

.why-content{
    max-width:470px;
}

.why-content h2{
    font-family:Montserrat,sans-serif;
    font-size:30px;
    line-height:1.15;
    font-weight:700;
    color:#171717;
    margin:0;
}

.why-content h2 strong{
    display:block;
    color:var(--brand);
    font-weight:800;
}

.why-content p{
    max-width:430px;
    font-size:14px;
    line-height:1.8;
    color:#707070;
    margin-bottom:25px;
}

.capability-list{
    border-top:1px solid #e5e5e5;
}

.capability-item{
    position:relative;
    display:grid;
    grid-template-columns:42px 55px 1fr 25px;
    align-items:center;
    gap:18px;
    min-height:110px;
    padding:18px 10px;
    border-bottom:1px solid #e5e5e5;
    transition:.3s ease;
}

.capability-item:hover{
    padding-left:18px;
    background:#fff7fa;
}

.capability-number{
    font:700 10px Montserrat;
    color:#b8b8b8;
}

.capability-icon{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #e5e5e5;
    color:var(--brand);
    font-size:21px;
    transition:.3s;
}

.capability-item:hover .capability-icon{
    color:#fff;
    background:var(--brand);
    border-color:var(--brand);
}

.capability-content h3{
    font-family:Montserrat,sans-serif;
    font-size:18px;
    font-weight:700;
    color:#222;
    margin:0 0 5px;
}

.capability-content p{
    max-width:500px;
    margin:0;
    color:#777;
    font-size:14px;
    line-height:1.55;
}

.capability-arrow{
    color:#b8b8b8;
    font-size:13px;
    transition:.3s;
}

.capability-item:hover .capability-arrow{
    color:var(--brand);
    transform:translate(2px,-2px);
}
  

.projects-section{padding:105px 0;background:#fff}
.projects-header{display:flex;align-items:flex-end;justify-content:space-between;gap:50px;margin-bottom:45px}
.projects-header h2{max-width:620px;margin:0;font-family:Montserrat,sans-serif;font-size:34px;line-height:1.15;font-weight:700;color:#171717}
.projects-header h2 span{color:var(--brand)}
.projects-header-right{max-width:390px}
.projects-header-right p{margin:0 0 18px;color:#777;font-size:14px;line-height:1.8}
.text-link{display:inline-flex;align-items:center;gap:8px;color:#171717;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:1px}
.text-link i{color:var(--brand);font-size:13px;transition:.25s}
.text-link:hover{color:var(--brand)}
.text-link:hover i{transform:translateX(4px)}
.projects-gallery{display:grid;grid-template-columns:1.15fr .85fr;grid-template-rows:280px 280px;gap:14px}
.project-item{display:block;min-width:0}
.project-item-1{grid-row:1 / 3}
.project-image{position:relative;width:100%;height:100%;min-height:250px;overflow:hidden;background:#ddd}
.project-image img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.project-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.03) 30%,rgba(0,0,0,.78) 100%)}
.project-item:hover .project-image img{transform:scale(1.05)}
/* .project-number{position:absolute;top:22px;left:22px;width:34px;height:34px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.5);color:#fff;font:700 9px Montserrat} */
.project-content{position:absolute;left:25px;right:60px;bottom:23px;color:#fff}
.project-content span{display:block;margin-bottom:6px;color:#ddd;font-size:8px;font-weight:700;text-transform:uppercase;letter-spacing:2px}
.project-content h3{margin:0;font-family:Montserrat,sans-serif;font-size:17px;line-height:1.25;font-weight:700;color:#fff}
.project-arrow{position:absolute;right:23px;bottom:23px;width:35px;height:35px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.45);color:#fff;font-size:12px;transition:.25s}
.project-item:hover .project-arrow{background:var(--brand);border-color:var(--brand);transform:translate(2px,-2px)}
.project-item-1 .project-content h3{font-size:23px}

.quote-banner {
    padding: 0 0 70px
}

.quote-box {
    background: linear-gradient(110deg, var(--brand), #c30e5b);
    padding: 42px 55px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.quote-box h2 {
    font-size: 26px;
    margin: 0 0 8px
}

.quote-box p {
    font-size: 12px
}

.quote-box .eyebrow {
    color: #fff
}

.btn-light {
    font-size: 11px;
    font-weight: 700;
    padding: 11px 20px
}

.contact-details p {
    font-size: 12px;
    line-height: 1.6;
    margin: 0 0 18px
}

.contact-details i {
    font-size: 19px;
    color: var(--brand);
    width: 28px;
    vertical-align: top
}

.enquiry-box {
    padding: 25px;
    border: 1px solid #eee;
    box-shadow: 0 10px 35px #00000008
}

.enquiry-box h3 {
    font-size: 16px;
    margin-bottom: 17px
}

.form-control,
.form-select {
    font-size: 11px;
    border-radius: 0;
    border-color: #ddd;
    padding: 10px
}

/* .map-placeholder {
    height: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #eef0ed, #d5d8d3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: #444
}

.map-placeholder i {
    font-size: 40px;
    color: var(--brand);
    margin-bottom: 10px
}

.map-placeholder strong {
    font-size: 13px
}

.map-placeholder span {
    font-size: 10px;
    max-width: 200px;
    margin-top: 5px
} */
/* 
.footer {
    background: #161616;
    color: #fff
}

.footer-logo {
    width: 190px;
    filter: brightness(0) invert(1) grayscale(1) brightness(2)
}

.footer-tagline {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 2px
}

.footer h6 {
    font-size: 12px;
    margin-bottom: 16px
}

.footer a {
    display: block;
    color: #aaa;
    font-size: 10px;
    margin-bottom: 8px
}

.footer a:hover {
    color: #fff
}

.footer p {
    font-size: 10px;
    color: #aaa;
    line-height: 1.65
}

.footer p i {
    color: var(--brand);
    margin-right: 7px
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 13px 0;
    color: #777;
    font-size: 9px
} */

.industries-section{
    background:#f7f7f7;
}

.industries-header{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:50px;
    margin-bottom:35px;
}

.industries-header h2{
    font-family:Montserrat,sans-serif;
    font-size:29px;
    line-height:1.15;
    font-weight:700;
    margin:0;
    color:#171717;
}

.industries-header h2 strong{
    color:var(--brand);
}

.industries-intro{
    max-width:410px;
}

.industries-intro p{
    margin:0;
    color:#777;
    font-size:14px;
    line-height:1.75;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
}

.industry-card{
    position:relative;
    display:block;
    height:230px;
    overflow:hidden;
    color:#fff;
    background:#222;
}

.industry-card:nth-child(1){
    grid-column:span 2;
}

.industry-image{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.industry-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.industry-card:hover .industry-image img{
    transform:scale(1.07);
}

.industry-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.05) 20%,
        rgba(0,0,0,.78) 100%
    );
    transition:.3s;
}

.industry-card:hover .industry-overlay{
    background:linear-gradient(
        180deg,
        rgba(215,25,104,.12) 20%,
        rgba(0,0,0,.82) 100%
    );
}

.industry-number{
    position:absolute;
    top:15px;
    left:15px;
    width:30px;
    height:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid rgba(255,255,255,.45);
    font:700 9px Montserrat;
}

.industry-content{
    position:absolute;
    z-index:2;
    left:20px;
    right:20px;
    bottom:18px;
}

.industry-content h3{
    font-family:Montserrat,sans-serif;
    font-size:17px;
    font-weight:700;
    margin:0 0 7px;
}

.industry-content span{
    display:flex;
    align-items:center;
    gap:5px;
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:1px;
    opacity:.8;
}

.industry-content span i{
    color:var(--brand);
    font-size:11px;
}

.industry-card:hover .industry-content span{
    opacity:1;
}

.journey-section{
    display:grid;
    grid-template-columns:50% 50%;
    min-height:470px;
    background:#161616;
}

.journey-image{
    position:relative;
    min-height:470px;
    overflow:hidden;
}

.journey-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.journey-section:hover .journey-image img{
    transform:scale(1.03);
}

.journey-image-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.08),
        rgba(0,0,0,.45)
    );
}

.journey-image-caption{
    position:absolute;
    z-index:2;
    left:45px;
    bottom:40px;
    color:#fff;
}

.journey-image-caption span{
    display:block;
    font-size:14px;
    letter-spacing:3px;
    font-weight:700;
    margin-bottom:7px;
}

.journey-image-caption strong{
    display:block;
    font:700 28px Montserrat;
}

.journey-content{
    display:flex;
    align-items:center;
    color:#fff;
    padding:60px 8%;
}

.journey-inner{
    width:100%;
    max-width:600px;
}

.journey-content .eyebrow{
    color:var(--brand);
}

.journey-content h2{
    font-family:Montserrat,sans-serif;
    font-size:32px;
    line-height:1.1;
    font-weight:700;
    margin:0;
    color:#fff;
}

.journey-content .section-line{
    margin:17px 0;
}

.journey-content>p,
.journey-inner>p{
    max-width:570px;
    color:#aaa;
    font-size:14px;
    line-height:1.8;
    margin-bottom:30px;
}

.journey-timeline{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px 30px;
}

.journey-point{
    display:grid;
    grid-template-columns:75px 1fr;
    gap:13px;
    padding-top:15px;
    border-top:1px solid #343434;
}

.journey-point-marker{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #555;
    color:var(--brand);
    font:700 20px Montserrat;
}

.journey-point-content h3{
    color:#fff;
    font-family:Montserrat,sans-serif;
    font-size:14px;
    text-transform:uppercase;
    margin:3px 0 5px;
}

.journey-point-content p{
    color:#d9d9d9;
    font-size:12px;
    line-height:1.5;
    margin:0;
}

.quote-cta{position:relative;overflow:hidden;padding:78px 0;background:#171717;color:#fff}
.quote-cta-pattern{position:absolute;right:-100px;top:-180px;width:520px;height:520px;border:1px solid rgba(255,255,255,.06);border-radius:50%}
.quote-cta-pattern:before,.quote-cta-pattern:after{content:"";position:absolute;border:1px solid rgba(255,255,255,.05);border-radius:50%}
.quote-cta-pattern:before{inset:55px}
.quote-cta-pattern:after{inset:110px}
.quote-cta-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:60px}
.quote-cta-content{max-width:760px}
.quote-cta .eyebrow{color:var(--brand);margin-bottom:13px}
.quote-cta h2{margin:0 0 18px;font-family:Montserrat,sans-serif;font-size:34px;line-height:1.2;font-weight:700;color:#fff}
.quote-cta p{max-width:650px;margin:0;color:#aaa;font-size:14px;line-height:1.8}
.quote-cta-actions{display:flex;align-items:center;gap:28px;flex:0 0 auto}
.quote-main-btn{padding:15px 23px}
.quote-secondary-link{display:inline-flex;align-items:center;gap:8px;color:#fff;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;white-space:nowrap}
.quote-secondary-link i{color:var(--brand);transition:.25s}
.quote-secondary-link:hover{color:var(--brand)}
.quote-secondary-link:hover i{transform:translate(3px,-3px)}

.contact-section{padding:105px 0;background:#f7f7f7}
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:90px;align-items:start}
.contact-info{padding-top:15px}
.contact-info h2{max-width:540px;margin:0 0 20px;font-family:Montserrat,sans-serif;font-size:34px;line-height:1.2;font-weight:700;color:#171717}
.contact-info h2 span{color:var(--brand)}
.contact-intro{max-width:520px;margin:0 0 42px;color:#777;font-size:14px;line-height:1.85}
.contact-details{display:flex;flex-direction:column;gap:25px}
.contact-detail{display:flex;align-items:flex-start;gap:17px;padding-bottom:25px;border-bottom:1px solid #e3e3e3}
.contact-icon{width:40px;height:40px;display:flex;align-items:center;justify-content:center;flex:0 0 40px;background:#fff;border:1px solid #e5e5e5;color:var(--brand);font-size:15px}
.contact-detail>div:last-child{display:flex;flex-direction:column}
.contact-detail span{margin-bottom:5px;color:#999;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:1.5px}
.contact-detail strong{display:flex;flex-direction:column;gap:3px;font-size:14px;line-height:1.5;font-weight:600;color:#222}
.contact-detail a{color:#222}
.contact-detail a:hover{color:var(--brand)}
.contact-form-wrap{padding:40px;background:#fff;border:1px solid #ededed;box-shadow:0 15px 40px rgba(0,0,0,.04)}
.contact-form-heading{margin-bottom:27px;padding-bottom:20px;border-bottom:1px solid #ededed}
.contact-form-heading span{display:block;margin-bottom:6px;color:var(--brand);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:2px}
.contact-form-heading h3{margin:0;font-family:Montserrat,sans-serif;font-size:20px;font-weight:700;color:#171717}
.contact-form-wrap label{display:block;margin-bottom:8px;color:#333;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.8px}
.contact-form-wrap input,.contact-form-wrap select,.contact-form-wrap textarea{width:100%;border:1px solid #ddd;border-radius:0;background:#fff;padding:12px 13px;color:#222;font-family:Inter,sans-serif;font-size:13px;outline:none;transition:.2s}
.contact-form-wrap input,.contact-form-wrap select{height:43px}
.contact-form-wrap textarea{resize:vertical;min-height:105px}
.contact-form-wrap input::placeholder,.contact-form-wrap textarea::placeholder{color:#aaa}
.contact-form-wrap input:focus,.contact-form-wrap select:focus,.contact-form-wrap textarea:focus{border-color:var(--brand);box-shadow:0 0 0 2px rgba(215,0,91,.06)}
.contact-submit{margin-top:3px;padding:13px 22px}


@media(max-width:991px) {
    .topbar-left {
        flex-wrap: wrap;
        gap: 8px
    }

    .topbar-social {
        display: none
    }

    .main-navbar {
        height: auto
    }

    .navbar-brand img {
        width: 190px
    }

    .nav-link {
        padding: 10px 0 !important
    }

     .hero-slide{
        min-height:540px;
    }

    .hero-overlay{
        background:linear-gradient(
            90deg,
            rgba(255,255,255,.98) 0%,
            rgba(255,255,255,.91) 55%,
            rgba(255,255,255,.35) 100%
        );
    }

    .hero-content{
        padding:65px 0;
        max-width:560px;
    }

    .hero-content h1{
        font-size:39px;
    }

    .hero-signature{
        display:none;
    }

    .hero-control{
        display:none;
    }
 
    .why-content{
        max-width:650px;
    }

    .capability-list{
        margin-top:10px;
    } 

    .industries-header{
        align-items:flex-start;
        flex-direction:column;
        gap:15px;
    }

    .industries-intro{
        max-width:600px;
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .industry-card:nth-child(1){
        grid-column:span 2;
    }

    /* .project-grid {
        grid-template-columns: repeat(3, 1fr)
    } */

    .journey-section{
        grid-template-columns:1fr;
    }

    .journey-image{
        min-height:350px;
    }

    .journey-content{
        padding:55px 7%;
    }

    .projects-section{padding:80px 0}
    .projects-header{align-items:flex-start;flex-direction:column;gap:20px;margin-bottom:30px}
    .projects-header h2{font-size:30px}
    .projects-header-right{max-width:550px}
    .projects-gallery{grid-template-columns:1fr 1fr;grid-template-rows:270px 270px}
    .project-item-1{grid-row:1 / 3}

    .quote-cta{padding:65px 0}
    .quote-cta-inner{align-items:flex-start;flex-direction:column;gap:30px}
    .quote-cta-content{max-width:700px}
    .quote-cta-actions{width:100%}

    .contact-section{padding:80px 0}
    .contact-grid{grid-template-columns:1fr;gap:55px}
    .contact-info{padding-top:0}
    .contact-info h2{font-size:30px}
    .contact-form-wrap{padding:35px}

}

@media(max-width:575px) {
    .topbar {
        display: none
    }

    .hero-slide{
        min-height:570px;
    }

    .hero-content{
        padding:55px 0;
    }

    .hero-content h1{
        font-size:31px;
    }

    .hero-subtitle{
        font-size:13px;
    }

    .hero-description{
        font-size:11px;
    }

    .hero-actions{
        flex-wrap:wrap;
    }

    .hero-points{
        gap:15px;
        flex-wrap:wrap;
    }

    .hero-point span{
        font-size:9px;
    }

    .section-space {
        padding: 55px 0
    }

    .industry-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .industries-header h2{
        font-size:25px;
    }

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

    .industry-card,
    .industry-card:nth-child(1){
        grid-column:auto;
        height:210px;
    }

    .journey-image{
        min-height:280px;
    }

    .journey-image-caption{
        left:25px;
        bottom:25px;
    }

    .journey-image-caption strong{
        font-size:23px;
    }

    .journey-content{
        padding:45px 25px;
    }

    .journey-content h2{
        font-size:27px;
    }

    .journey-timeline{
        grid-template-columns:1fr;
        gap:15px;
    }

    .projects-section{padding:65px 0}
    .projects-header h2{font-size:26px}
    .projects-gallery{display:grid;grid-template-columns:1fr;grid-template-rows:none;gap:12px}
    .project-item-1{grid-row:auto}
    .project-image{height:270px;min-height:270px}
    .project-item-1 .project-content h3{font-size:18px}
    .project-content h3{font-size:15px}

    .quote-cta{padding:55px 0}
    .quote-cta h2{font-size:27px}
    .quote-cta-actions{align-items:flex-start;flex-direction:column;gap:20px}
    .quote-main-btn{width:100%;justify-content:center}

    .contact-section{padding:65px 0}
    .contact-info h2{font-size:26px}
    .contact-intro{margin-bottom:32px}
    .contact-form-wrap{padding:25px 20px}
    .contact-form-heading h3{font-size:18px}
    .contact-submit{width:100%;justify-content:center}

}


@media(max-width:1199px){
    .navbar-brand img{
        width:195px;
    }

    .nav-link{
        padding-left:9px!important;
        padding-right:9px!important;
    }

    .nav-link:before{
        left:9px;
        right:9px;
    }

    .header-action{
        margin-left:8px;
    }
      .products-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:991px){
    .topbar{
        display:none;
    }

    .main-navbar{
        min-height:70px;
    }

    .navbar-brand img{
        width:195px;
    }

    .navbar-collapse{
        padding:15px 0 20px;
    }

    .navbar-nav{
        gap:0;
    }

    .nav-link{
        padding:11px 0!important;
        border-bottom:1px solid #eee;
    }

    .nav-link:before{
        display:none;
    }

    .header-action{
        margin:15px 0 0;
    }

    .header-action .btn{
        width:100%;
    }

    .mega-menu-parent{
        position:relative;
    }

    .mega-menu{
        position:static;
        box-shadow:none;
        padding:10px 0;
        border-top:1px solid #eee;
    }

    .mega-menu-header{
        padding:15px 0;
        margin:0;
    }

    .mega-menu-header h3{
        font-size:15px;
    }

    .mega-view-all{
        display:none;
    }

    .mega-product-grid{
        border-left:0;
    }

    .mega-product-item{
        min-height:auto;
        padding:14px 10px;
        border-left:1px solid #eee;
    }

  
     .about-image{
        height:360px;
    }

    .stats-list{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        border-left:0;
        border-top:1px solid #ddd;
        padding:25px 0 0;
    }

    .stat-item{
        margin:0;
    }

     .products-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:15px;
        margin-bottom:30px;
    }

    .products-heading-right{
        max-width:600px;
    }

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }


}

@media(max-width:575px){
    .navbar-brand img{
        width:100px;
    }

    .mega-menu-header{
        display:block;
    }

    .mega-menu-header h3{
        font-size:13px;
        line-height:1.4;
    }

    .mega-product-item{
        padding:13px 8px;
    }

    .mega-product-number{
        width:26px;
        height:26px;
    }

    .mega-product-content h4{
        font-size:10px;
    }

    .mega-product-items span{
        font-size:8px;
    }


     .about-image{
        height:280px;
    }

    .about-content h2{
        font-size:25px;
    }

    .stats-list{
        grid-template-columns:repeat(2,1fr);
    }


    .products-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .product-image{
        height:220px;
    }
}

.site-footer{background:#151515;color:#fff}
.footer-main{padding:70px 0 60px}
.footer-grid{display:grid;grid-template-columns:1.4fr .7fr 1.2fr 1.1fr;gap:65px}
.footer-logo{display:inline-block;margin-bottom:20px}
.footer-logo img{width:210px;height:auto;display:block}
.footer-company p{max-width:340px;margin:0 0 24px;color:#d9d9d9;font-size:14px;line-height:1.8}
.footer-social{display:flex;gap:9px}
.footer-social a{width:31px;height:31px;display:flex;align-items:center;justify-content:center;border:1px solid #333;color:#aaa;font-size:11px;transition:.2s}
.footer-social a:hover{background:var(--brand);border-color:var(--brand);color:#fff}
.footer-links h3,.footer-contact h3{margin:4px 0 22px;color:#fff;font-family:Montserrat,sans-serif;font-size:15px;font-weight:700;text-transform:uppercase;letter-spacing:1px}
.footer-links ul{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:10px}
.footer-links a{color:#d9d9d9;font-size:14px;line-height:1.4}
.footer-links a:hover{color:var(--brand)}
.footer-products ul{display:grid;grid-template-columns:1fr;gap:9px}
.footer-contact{max-width:290px}
.footer-contact-item{display:flex;align-items:flex-start;gap:13px;margin-bottom:18px}
.footer-contact-item>i{flex:0 0 14px;color:var(--brand);font-size:13px;margin-top:2px}
.footer-contact-item span{display:flex;flex-direction:column;gap:4px;color:#d9d9d9;font-size:14px;line-height:1.6}
.footer-contact-item a{color:#d9d9d9}
.footer-contact-item a:hover{color:var(--brand)}
.footer-bottom{border-top:1px solid #292929}
.footer-bottom-inner{min-height:55px;display:flex;align-items:center;justify-content:space-between;gap:20px}
.footer-bottom span{color:#666;font-size:8px}
.footer-bottom span:last-child{color:#d9d9d9;letter-spacing:1px;text-transform:uppercase}
@media(max-width:991px){
.footer-main{padding:60px 0 45px}
.footer-grid{grid-template-columns:1fr 1fr;gap:45px}
.footer-company{grid-column:1 / 3}
.footer-company p{max-width:500px}
}
@media(max-width:575px){
.footer-main{padding:50px 0 35px}
.footer-grid{grid-template-columns:1fr;gap:35px}
.footer-company{grid-column:auto}
.footer-logo img{width:190px}
.footer-bottom-inner{padding:15px 0;align-items:flex-start;flex-direction:column;gap:8px}
}

