/*==================================
RESET
==================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --primary:#0F1724;
    --white:#ffffff;

    --container:1500px;

}

html{
    scroll-behavior:smooth;
}

body{

    font-family:Helvetica,Arial,sans-serif;
    color:var(--primary);
    background:#fff;
    overflow-x:hidden;

}

/*==================================
CONTAINER
==================================*/

.container{

    width:100%;
    max-width:var(--container);

    margin:0 auto;

    padding:0 50px;

}

/*==================================
HEADER
==================================*/

.header{

    background:#fff;

}

.nav-container{

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:120px;

}

.logo img{

    width:165px;
    display:block;

}

/*==================================
NAVIGATION
==================================*/

.nav{

    display:flex;
    align-items:center;

}

.nav-links{

    display:flex;
    align-items:center;

    list-style:none;

    gap:42px;

}

.nav-links a{

    position:relative;

    text-decoration:none;

    color:var(--primary);

    font-size:16px;

    font-weight:400;

    line-height:1;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-1px;

    width:0;

    height:1px;

    background:var(--primary);

    transition:width .3s ease;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}

/*==================================
NAV CONTACT BUTTON
==================================*/

.nav-contact-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    background:#334155;

    color:#fff !important;

    border:1.5px solid var(--primary);
text-transform: uppercase;
    text-decoration:none;

    font-size:15px;

    font-weight:500;

    line-height:1;
letter-spacing: -0.5px;
    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease;

}

.nav-contact-btn:hover{

    background:#fff;

    color:var(--primary) !important;

    border-color:var(--primary);

}

.nav-contact-btn::after{

    display:none;

}
/*==================================
MENU
==================================*/

.menu-btn{

    display:none;

    flex-direction:column;

    gap:5px;

}

.menu-btn span{

    width:26px;
    height:2px;

    background:var(--primary);

}

/*==================================
MOBILE MENU
==================================*/

.mobile-menu{
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 9999;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;

    padding: 120px 20px 40px;

    transform: translateX(100%);
    transition: transform .45s ease;
}

.mobile-menu.active{
    transform: translateX(0);
}

/* Close Button */

.close-menu{
    position: absolute;
    top: 28px;
    right: 20px;

    width: 20px;
    height: 20px;

    background: transparent;
    border: none;
    cursor: pointer;
}

.close-menu::before,
.close-menu::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;

    width: 32px;
    height: 2px;

    background: var(--primary);
}

.close-menu::before{
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-menu::after{
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Navigation */

.mobile-nav-links{
    list-style: none;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 24px;
}

.mobile-nav-links a{
    position: relative;

    color: var(--primary);
    text-decoration: none;

    font-size: 15px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.mobile-nav-links a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;

    width: 0;
    height: 1px;

    background: var(--primary);
    transition: width .3s ease;
}

.mobile-nav-links a:hover::after,
.mobile-nav-links a.active::after{
    width: 100%;
}



/*==================================
HERO
==================================*/

.hero{

    position:relative;

    width:100%;

    height:500px;

    overflow:hidden;

    border-top:1px solid var(--primary);

    border-bottom:1px solid var(--primary);

}

.hero img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

/* Dark Overlay */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(15,23,42,.30);

    z-index:1;

}

/*==================================
HERO CONTENT
==================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:0 40px;

    z-index:2;

}

.hero-heading-mask{

    overflow:hidden;

}

.hero-heading{

    color:#FFFFFF;

    font-size:94px;

    font-weight:700;

    line-height:.92;

    letter-spacing:-4px;

    text-align:center;

    transform:translateY(100%);

    transition:transform 1.15s cubic-bezier(.22,.61,.36,1);

}

.hero-heading.show{

    transform:translateY(0);

}

/*==================================
LARGE DESKTOP
==================================*/

@media(min-width:1600px){

.hero{

height:860px;

}
.hero-heading{

font-size:92px;

}

}

/*==================================
1400
==================================*/

@media(max-width:1400px){

.hero{

height:470px;

}

.hero-heading{

font-size:72px;

}

}

/*==================================
992
==================================*/

@media(max-width:992px){

.container{

padding:0 30px;

}

.hero{

height:400px;

}

.hero-heading{

font-size:58px;

letter-spacing:-3px;

}

.nav-links{

gap:30px;

}

}

/*==================================
768
==================================*/

@media(max-width:768px){

.container{

padding:0 20px;

}

.nav-links{

display:none;

}

.menu-btn{

display:flex;

cursor:pointer;

}

.mobile-menu{

display:flex;

}

.nav-container{

height:90px;

}

.logo img{

width:120px;

}

/* HERO */

.hero{

    height:60vh;

    min-height:450px;

}

.hero img{

object-fit:cover;

object-position:center;

}

.hero-overlay{

justify-content:flex-start;

align-items:center;

  padding:0 30px;

}

.hero-heading{

font-size:40px;

letter-spacing:-2px;

text-align:left;

}

}




/*==================================
SERVICES
==================================*/

.services{

    background:#F1F5F9;

    padding:95px 0 110px;

}

.section-title{

    color:#0F1724;

    font-size:clamp(48px,5vw,82px);

    font-weight:700;

    line-height:1;

    letter-spacing:-4px;

    margin-bottom:70px;

}

/*==================================
GRID
==================================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:55px;

}

/*==================================
CARD
==================================*/

.service-card h3{

    margin-top:30px;

    color:#0F1724;

    font-size:31px;

    font-weight:700;

    line-height:1.1;

    letter-spacing:-1px;

}

.service-card p{

    margin-top:28px;

    color:#475569;

    font-size:15px;

    

    max-width:95%;

}

.service-card a{

    display:inline-block;

    margin-top:34px;

    color:#334155;

    font-size:15px;

    text-decoration:none;

    border-bottom:1px solid #334155;

    transition:.35s;

}

.service-card a:hover{

    opacity:.75;

}

/*==================================
IMAGE
==================================*/

.service-image{

    overflow:hidden;

}

.service-image img{

    width:100%;
    display:block;
    aspect-ratio:16/9;
    object-fit:cover;

    clip-path:inset(100% 0 0 0);

    transition:
        clip-path 1.2s cubic-bezier(.77,0,.18,1);

}

/* Animation starts */

.service-image.reveal img{

    clip-path:inset(0 0 0 0);

}

/*==================================
ANIMATION
==================================*/

@keyframes imageRevealUp{

    from{

        clip-path:inset(100% 0 0 0);

    }

    to{

        clip-path:inset(0 0 0 0);

    }

}

/*==================================
TABLET
==================================*/

@media(max-width:1100px){

.services-grid{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

}

@media (max-width: 768px) {

    .services{
        padding: 70px 0;
    }

    .section-title{
        font-size: 36px;
        line-height: 1;
        letter-spacing: -1px;
        margin-bottom: 40px;
    }

    .services-grid{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-card h3{
        margin-top: 24px;
        font-size: 24px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .service-card p{
        margin-top: 18px;
        font-size: 16px;
        line-height: 1.1;
         letter-spacing: -0.5px;
        max-width: 100%;
    }

    .service-card a{
        margin-top: 24px;
        font-size: 16px;
    }

}





/*==================================
PROJECT INTRO
==================================*/

.project-intro{

    background:#fff;

    padding:110px 0 60px;

}

.intro-wrapper{

    display:grid;

    grid-template-columns:1.45fr .75fr;

    align-items:center;

    column-gap:120px;

}

.intro-left h2{

    font-size:clamp(52px,5vw,82px);

    font-weight:700;

    color:#0F1724;

    line-height:.95;

    letter-spacing:-4px;

}

.intro-right{

    display:flex;

    justify-content:flex-end;

}

.intro-right p{

    max-width:620px;

    font-size:18px;

    line-height:1.25;

    color:#0F1724;

}

.section-divider{

    width:100%;

    height:1px;

    background:#0F1724;

    margin-top:85px;

}

/*==================================
ZOOM FADE
==================================*/

.zoom-fade{

    opacity:0;

    transform:scale(.92);

    transition:
        opacity .9s ease,
        transform .9s cubic-bezier(.25,.46,.45,.94);

}

.zoom-fade.show{

    opacity:1;

    transform:scale(1);

}



/*==============================
TABLET
==============================*/

@media(max-width:992px){

.intro-wrapper{

grid-template-columns:1fr;

row-gap:40px;

}

.intro-right{

justify-content:flex-start;

}

.intro-right p{

max-width:100%;

font-size:18px;

}

.section-divider{

margin-top:60px;

}

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px){

.project-intro{

padding:70px 0 40px;

}

.intro-left h2{

font-size:38px;
letter-spacing: -2px;
line-height:1;

}

.intro-right p{

font-size:17px;

line-height:1.2;
letter-spacing: -0.5px;

}

.section-divider{

margin-top:45px;

}

}






/*==================================
PROJECTS
==================================*/

.projects{

    padding:10px 0 110px;

}
.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    align-items:start;

}

/*==================================
IMAGE
==================================*/

.project-image{

    overflow:hidden;

}

.project-image img{

    width:100%;

    display:block;

    object-fit:cover;

}

.project-image img{

    width:100%;

    height:400px;

    object-fit:cover;

    display:block;

}

.project-card{

    display:flex;

    flex-direction:column;

}

/*==================================
TEXT
==================================*/

.project-card h3{

    margin-top:18px;

    color:#0F1724;

    font-size:clamp(28px,2vw,34px);

    font-weight:700;

    line-height:.95;

    letter-spacing:-1.5px;

}

.project-card p{

    margin-top:15px;

    color:#0F1724;

    font-size:15px;

    line-height:1.15;

    max-width:95%;

}
hr{
    border:none;
    border-top:2px solid #0F1724;
}
/*==================================
PROJECT IMAGE REVEALS
==================================*/

.project-reveal-left img{

    clip-path:inset(0 100% 0 0);

    transition:clip-path 1.15s cubic-bezier(.22,.61,.36,1);

}

.project-reveal-left.show img{

    clip-path:inset(0);

}



.project-reveal-bottom img{

    clip-path:inset(100% 0 0 0);

    transition:clip-path 1.15s cubic-bezier(.22,.61,.36,1);

}

.project-reveal-bottom.show img{

    clip-path:inset(0);

}



.project-reveal-right img{

    clip-path:inset(0 0 0 100%);

    transition:clip-path 1.15s cubic-bezier(.22,.61,.36,1);

}

.project-reveal-right.show img{

    clip-path:inset(0);

}

/*==================================
TABLET
==================================*/

@media(max-width:992px){

.projects-grid{

grid-template-columns:repeat(2,1fr);

gap:45px;

}
.project-image img{

    height:400px;

}

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.projects{

padding:45px 0 70px;

}

.projects-grid{

grid-template-columns:1fr;

gap:55px;

}

.project-image img{

    height:320px;

}

.project-card h3{

font-size:30px;

}

.project-card p{

font-size:16px;

line-height:1.2;
letter-spacing: -0.5px;

}

}



/*==================================
BOTTOM CTA
==================================*/

.bottom-cta{

    padding:45px 0 80px;

}

.bottom-divider{

    width:100%;
    height:2px;
    background:#0F1724;

    margin-bottom:36px;

}

.bottom-content{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/*==================================
COPYRIGHT
==================================*/

.copyright{

    color:#475569;

    font-size:15px;

    font-weight:400;

    line-height:1;

}

/*==================================
BUTTON
==================================*/

.cta-button{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    background:#334155;

    color:#ffffff;

    text-decoration:none;

    font-size:16px;

    font-weight:400;

    padding:18px 34px;

    position:relative;

    transition:background .3s ease;

}

.cta-button::after{

    content:"";

    position:absolute;

    left:34px;
    right:34px;
    bottom:14px;

    height:1px;

    background:#ffffff;

    transform:scaleX(0);

    transform-origin:left;

    transition:transform .35s ease;

}

.cta-button:hover::after{

    transform:scaleX(1);

}

.cta-button:hover{

    background:#2b3b4f;

}

/*==================================
TABLET
==================================*/

@media(max-width:768px){

.bottom-content{

flex-direction:column;

align-items:flex-start;

gap:25px;

}

.cta-button{

width:100%;

justify-content:center;

}

}

/*==================================
MOBILE
==================================*/

@media(max-width:480px){

.bottom-cta{

padding:25px 0 60px;

}

.copyright{

font-size:14px;
letter-spacing: -0.5px;

}

.cta-button{

padding:16px 24px;

font-size:14px;

}

}




/*==================================
CONTACT SECTION
==================================*/

.contact-section{

    padding:110px 0;

    background:#FFFFFF;

    overflow:hidden;

}

.contact-section .container{

    max-width:1400px;

    margin:0 auto;

    padding:0 50px;

}

/*==================================
GRID
==================================*/

.contact-grid{

    display:grid;

    grid-template-columns:0.95fr 1.05fr;

    gap:70px;

    align-items:start;

}

/*==================================
LEFT COLUMN
==================================*/

.contact-left{

    width:100%;

    max-width:560px;

}

/*==================================
HEADING
==================================*/

.contact-heading-wrap{

    overflow:hidden;

    margin-bottom:42px;

}

.contact-heading{

    color:#0F172A;

    font-size:clamp(54px,6vw,82px);

    font-weight:700;

    line-height:.9;

    letter-spacing:-4px;

    opacity:0;

    filter:blur(2px);

    transition:
    opacity 1.15s ease,
    filter 1.15s ease;

    will-change:opacity,filter;

}

.contact-heading.show{

    opacity:1;

    filter:blur(0);

}

/*==================================
FORM CARD
==================================*/

.contact-box{

    border:1px solid #CBD5E1;

    background:#FFFFFF;

    padding:34px;

}

.contact-box h3{

    color:#0F172A;

    font-size:28px;

    font-weight:500;

    letter-spacing:-2px;

    line-height:1;

    margin-bottom:14px;

}

.contact-intro{

    color:#475569;

    font-size:15px;

    line-height:1.45;

    letter-spacing:-0.2px;

    max-width:470px;

    margin-bottom:28px;

}

/*==================================
FORM
==================================*/

form{

    width:100%;

}

.form-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.form-group{

    margin-bottom:18px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    color:#475569;

    font-size:13px;

    font-weight:500;

    letter-spacing:.2px;

}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    border:1px solid #475569;

    background:#FFFFFF;

    color:#0F172A;

    font-family:inherit;

    font-size:15px;

    outline:none;

    transition:
    border-color .35s ease,
    background .35s ease;

}

.form-group input,
.form-group select{

    height:50px;

    padding:0 16px;

}

.form-group textarea{

    height:125px;

    resize:none;

    padding:14px 16px;

    line-height:1.45;

}

.form-group input::placeholder,
.form-group textarea::placeholder{

    color:#475569;

}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{

    border-color:#334155;

}

.form-group select{

    appearance:none;

    cursor:pointer;

    color:#475569;

    padding-right:50px;

    background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230F172A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    no-repeat
    right 16px center;

}

.form-group select option{

    background:#0F172A;

    color:#FFFFFF;

}

/*==================================
BUTTON
==================================*/

.submit-btn{

    width:100%;

    height:50px;

    margin-top:6px;

    border:none;

    background:#334155;

    color:#FFFFFF;

    font-size:15px;

    font-weight:500;

    letter-spacing:.3px;

    cursor:pointer;

    transition:
    background .35s ease;

}

.submit-btn:hover{

    background:#475569;

}

/*==================================
CONTACT DETAILS
==================================*/

.contact-details{

    margin-top:60px;

    display:grid;

    gap:38px;

}

.detail-block h4{

    color:#0F172A;

    font-size:22px;

    font-weight:700;

    line-height:1;

    letter-spacing:-2px;

    margin-bottom:14px;

}

.detail-block p{

    color:#475569;

    font-size:16px;

    line-height:1.55;

    letter-spacing:-0.2px;

    max-width:360px;

}

/*==================================
RIGHT COLUMN
==================================*/

.contact-right{

    width:100%;

    display:flex;

    justify-content:flex-end;

}

/*==================================
MAP
==================================*/

.contact-map{

    width:100%;

    max-width:680px;

    overflow:hidden;

    border:1px solid #CBD5E1;

}

.contact-map iframe{

    width:100%;

    height:760px;

    border:none;

    display:block;

}

/*==================================
MAP REVEAL
==================================*/

.contact-map-reveal{

    clip-path:inset(0 0 0 100%);

    transition:
    clip-path 1.25s cubic-bezier(.22,.61,.36,1);

    will-change:clip-path;

}

.contact-map-reveal.show{

    clip-path:inset(0);

}

/*==================================
TABLET
==================================*/

@media(max-width:992px){

.contact-section{

padding:90px 0;

}

.contact-section .container{

padding:0 40px;

}

.contact-grid{

grid-template-columns:1fr;

gap:55px;

}

.contact-left{

max-width:100%;

order:2;

}

.contact-right{

order:1;

justify-content:center;

}

.contact-map{

max-width:100%;

}

.contact-map iframe{

height:450px;

}

.contact-details{

margin-top:50px;

}

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.contact-section{

padding:0 0 80px;

}

.contact-section .container{

padding:0 20px;

}

.contact-grid{

gap:40px;

}

/* Map First */

.contact-right{

order:1;

}

.contact-map{

margin:0 -20px;

max-width:calc(100% + 40px);

border:none;

}

.contact-map iframe{

height:320px;

}

/* Content */

.contact-left{

order:2;

max-width:100%;

}

.contact-heading-wrap{

margin-bottom:26px;

}

.contact-heading{

font-size:36px;

letter-spacing:-3px;

}

.contact-box{

padding:24px;

}

.contact-box h3{

font-size:22px;
letter-spacing: -0.5px;
margin-bottom:12px;

}

.contact-intro{

font-size:15px;

line-height:1.1;
letter-spacing: -0.5px;
margin-bottom:22px;

}

.form-row{

grid-template-columns:1fr;

gap:0;

}

.form-group{

margin-bottom:16px;

}

.form-group input,
.form-group select{

height:48px;
letter-spacing: -0.5px;
font-size:15px;

}

.form-group textarea{

height:115px;
letter-spacing: -0.5px;
font-size:14px;

}

.submit-btn{

height:48px;
letter-spacing: -0.5px;
font-size:15px;

}

.contact-details{

margin-top:42px;

gap:30px;

}

.detail-block h4{

font-size:18px;

letter-spacing:-1.5px;

margin-bottom:10px;

}

.detail-block p{

font-size:15px;

line-height:1.5;

max-width:100%;

}

}





/*==================================
RUNNING BANNER
==================================*/

.footer-banner{

    background:#475569;

    overflow:hidden;

    padding:34px 0;

    white-space:nowrap;

}

/*==================================
MARQUEE
==================================*/

.marquee{

    width:100%;

    overflow:hidden;

}
.marquee-content{

    display:flex;

    width:max-content;

    align-items:center;

    gap:40px;

    animation:marqueeRight 40s linear infinite;

}

.marquee-content span{

    color:#ffffff;

    font-size:78px;

    font-weight:700;

    line-height:1;

    letter-spacing:-4px;

    flex-shrink:0;

}

/*==================================
ANIMATION
==================================*/
@keyframes marqueeRight{

    from{

        transform:translateX(-50%);

    }

    to{

        transform:translateX(0);

    }

}

/*==================================
TABLET
==================================*/

@media(max-width:992px){

.marquee-content span{

font-size:62px;

}

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.footer-banner{

padding:24px 0;

}

.marquee-content{

gap:28px;

}

.marquee-content span{

font-size:36px;

letter-spacing:-1px;

}

}









/*==================================
ABOUT HERO
==================================*/

.about-hero{

    background:#ffffff;

    padding:20px 0 50px;

}

/*==================================
TOP DIVIDER
==================================*/

.about-top-line{

    width:88%;

    height:1px;

    background:#334155;

    margin-left:auto;

    margin-bottom:60px;

}

/*==================================
LAYOUT
==================================*/

.about-grid{

    display:grid;

    grid-template-columns:1fr 0.9fr;

    gap:42px;

    align-items:start;

}

/*==================================
CONTENT
==================================*/

.about-content{

    display:flex;

    flex-direction:column;

}

/*==================================
HEADING
==================================*/
.about-title{

    font-size:clamp(48px,6vw,54px);

    font-weight:700;

    color:#0F172A;

    margin:0;
  line-height:0.9;
    letter-spacing:-2px;

}

/*==================================
DIVIDER
==================================*/

.about-divider{

    width:100%;

    height:1px;

    background:#334155;

    margin:42px 0;

}

/*==================================
MAIN PARAGRAPH
==================================*/

.about-description{

    font-size:18px;

    color:#0F172A;

    margin:0;

    max-width:95%;

}

/*==================================
SECOND PARAGRAPH
==================================*/

.about-subdescription{

    margin-top:18px;

    font-size:15px;

    color:#475569;

    max-width:95%;

}

/*==================================
IMAGE
==================================*/

.about-image{

    overflow:hidden;

    width:100%;

}

.about-image img{

    width:100%;

    height:505px;

    object-fit:cover;

    display:block;

}




/*==================================
ABOUT HERO ANIMATION
==================================*/

/* Top Line */

.about-top-line{

    transform:scaleX(0);

    transform-origin:right;

    transition:transform 1.2s cubic-bezier(.77,0,.18,1);

}

.about-top-line.show{

    transform:scaleX(1);

}

/* Image Curtain */

.about-image{

    clip-path:inset(0 0 0 100%);

    transition:clip-path 1.3s cubic-bezier(.77,0,.18,1);

}

.about-image.show{

    clip-path:inset(0 0 0 0);

}

/* Heading + First Paragraph */

.about-title,
.about-divider,
.about-description{

    opacity:0;

    transform:translateY(35px);

    transition:

    opacity 1.2s ease,

    transform 1.2s ease;

}

.about-title.show,
.about-divider.show,
.about-description.show{

    opacity:1;

    transform:translateY(0);

}

/* Second Paragraph */

.about-subdescription{

    opacity:0;

    transform:translateY(35px);

    transition:

    opacity 1.2s ease,

    transform 1.2s ease;

    transition-delay:.25s;

}

.about-subdescription.show{

    opacity:1;

    transform:translateY(0);

}




/*==================================
TABLET
==================================*/

@media(max-width:1100px){

.about-grid{

grid-template-columns:1fr;

gap:55px;

}

.about-image{

order:-1;

}

.about-image img{

height:620px;

}

.about-top-line{

width:100%;

margin-bottom:40px;

}

.about-title{

font-size:60px;

}

.about-description{

max-width:100%;

font-size:22px;

}

.about-subdescription{

max-width:100%;

}

}

/*==================================
MOBILE
==================================*/
/*==================================
MOBILE
==================================*/

@media (max-width:768px){

    .about-hero{
        padding:20px 0 70px;
    }

    .about-top-line{
        width:100%;
        margin-bottom:20px;
    }

    .about-grid{
        display:flex;
        flex-direction:column;
        gap:34px;
    }

    .about-image{
        order:1;
    }

    .about-content{
        order:2;
    }

    .about-image img{
        height:300px;
        object-fit:cover;
    }

    .about-title{
        font-size:34px;
        line-height:0.95;
        letter-spacing:-2px;
        margin:0;
    }

    .about-divider{
        margin:30px 0;
    }

    .about-description{
        font-size:15px;
        max-width:100%;
    }

    .about-subdescription{
        font-size:15px;
        line-height:1.1;
        margin-top:24px;
        max-width:100%;
    }

}








/* about us page */


/*==================================
CORE VALUES
==================================*/

.core-values{

    padding:50px 0 110px;

    background:#ffffff;

}

/*==================================
TITLE
==================================*/

.core-title{

    color:#0F172A;

    font-size:clamp(48px,6vw,54px);

    font-weight:700;

    line-height:.95;
letter-spacing:-2px;
    margin-bottom:70px;

}

/*==================================
GRID
==================================*/

.core-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:0;

}

/*==================================
CARD
==================================*/

.core-card{

    background:#F1F5F9;

    border:1px solid #334155;

    padding:46px 42px;

    min-height:280px;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

}

.core-card:not(:first-child){

    border-left:none;

}

.core-card{

    position:relative;

    border:1px solid #334155;

}

.core-card:not(:first-child)::before{

    content:"";

    position:absolute;

    left:-1px;

    top:0;

    width:2px;      /* Change to 2px or 3px */

    height:100%;

    background:#334155;

}

/*==================================
HEADING
==================================*/
.core-heading{

    color:#0F172A;

    font-size:28px;

    font-weight:700;

    line-height: 0.95;

    margin:0 0 28px;

}

/*==================================
TEXT
==================================*/

.core-text{

    color:#0F172A;

    font-size:15px;

   

}
/*==================================
CORE VALUES ANIMATION
==================================*/

.core-title,
.core-heading,
.core-text{

    opacity:0;

    filter:blur(1px);

    transition:
        opacity 1.2s ease,
        filter 1.2s ease;

    will-change:opacity,filter;

}

.core-title.show,
.core-heading.show,
.core-text.show{

    opacity:1;

    filter:blur(0);

}
/*==================================
TABLET
==================================*/

@media (max-width:1100px){

    .core-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .core-card{

        min-height:360px;

    }

    .core-card:nth-child(2),
    .core-card:nth-child(4){

        border-left:none;

    }

    .core-card:nth-child(3){

        border-left:1px solid #334155;

        border-top:none;

    }

    .core-card:nth-child(4){

        border-top:none;

    }

}

/*==================================
MOBILE
==================================*/
/*==================================
MOBILE
==================================*/

@media (max-width:768px){

   .core-values{
    padding: 15px 0 70px;
}

    .core-title{
        font-size:36px;
        line-height:1;
        letter-spacing:-2px;
        margin-bottom:36px;
    }

    .core-grid{
        display:grid;
        grid-template-columns:1fr;
        gap:22px;                 /* Space between cards */
    }

    .core-card{
        min-height:auto;
        padding:32px;
        border:1px solid #334155;
    }

    /* Remove the connected-table look */
    .core-card:not(:first-child){
        border:1px solid #334155;
    }

    .core-card:not(:first-child)::before{
        display:none;
    }

    .core-heading{
        font-size:26px;
        line-height:1;
        letter-spacing:-1px;
        margin-bottom:20px;
    }

    .core-text{
        font-size:15px;
        line-height:1.1;
        letter-spacing:-0.5px;
    }

}



/*==================================
ARCHITECTURAL SHOWCASE
==================================*/

.showcase-section{

    background:#fff;

    padding:25px 0 30px;

}

/* Divider */

.showcase-divider{

    width:100%;

    height:1px;

    background:#334155;

    margin-bottom:55px;

}

/* Content */

.showcase-content{

    max-width:1300px;

    margin-bottom:55px;

}

/* Heading */
.showcase-title{
    font-size: 96px;
    font-weight: 700;
    color: #0F172A;
    line-height: .88;
    letter-spacing: -4px;
    margin: 0 0 34px;
}

/* Paragraph */

.showcase-text{

    max-width:900px;

    font-size:20px;

    font-weight:300;

    color:#475569;

    line-height:1.28;

    letter-spacing:-1px;

    margin:0 0 36px;

}

/* CTA Button */

.showcase-btn{

    display:inline-block;

    background:#334155;

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:.3px;

    padding:14px 28px;

    position:relative;

    transition:background .3s ease;

}

/* Underline */

.showcase-btn::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:12px;

    width:0;

    height:1px;

    background:#fff;

    transform:translateX(-50%);

    transition:width .35s ease;

}

.showcase-btn:hover{

    background:#2B394B;

}

.showcase-btn:hover::after{

    width:68%;

}

/* Image */

.showcase-image{

    width:100%;

}

.showcase-image img{

    width:100%;

    height:450px;

    object-fit:cover;

    display:block;

}
/*==================================
SHOWCASE IMAGE REVEAL
==================================*/

.showcase-image{

    width:100%;

    overflow:hidden;

    clip-path:inset(100% 0 0 0);

    transition:clip-path 1.2s cubic-bezier(.22,.61,.36,1);

}

.showcase-image.show{

    clip-path:inset(0);

}

/*==================================
LARGE DESKTOP
==================================*/

@media (max-width:1440px){

    .showcase-title{
        font-size:60px;
        line-height:0.9;
        letter-spacing:-3px;
    }

}
/*==================================
TABLET
==================================*/

@media (max-width:1100px){

    .showcase-section{
        padding:25px 0 50px;
    }

    .showcase-divider{
        margin-bottom:45px;
    }

    .showcase-content{
        margin-bottom:45px;
    }

    .showcase-title{
        font-size:64px;
        line-height:0.95;
        letter-spacing:-2px;
        margin-bottom:28px;
    }

    .showcase-text{
        max-width:100%;
        font-size:18px;
        line-height:1.5;
        margin-bottom:32px;
    }

    .showcase-image img{
        height:380px;
    }

}


/*==================================
MOBILE
==================================*/

@media (max-width:768px){

    .showcase-section{
    padding:20px 0 25px;
}

    .showcase-divider{
        margin-bottom:30px;
    }

    .showcase-content{
    margin-bottom:10px;
}

    .showcase-title{
        font-size:36px;
        line-height:1;
        letter-spacing:-1px;
        margin-bottom:20px;
    }

    .showcase-text{
        max-width:100%;
        font-size:15px;
        line-height:1.1;
        letter-spacing:0;
        margin-bottom:28px;
    }

    .showcase-btn{
        font-size:14px;
        padding:12px 22px;
    }

    .showcase-image img{
        width:100%;
        height:260px;
        object-fit:contain;
        object-position:center;
    }

}




/*==================================
PRODUCT LINES
==================================*/

.product-lines{

    background:#fff;

    padding:60px 0 45px;

}

/*=========================
Heading
=========================*/

.product-heading-wrapper{

    overflow:hidden;

    margin-bottom:60px;

}

.product-heading{

    margin:0;

}

.product-heading span{

    display:inline-block;

    font-size:clamp(44px,5vw,72px);

    font-weight:700;

    color:#0F172A;

    line-height:.92;

    letter-spacing:-4px;

    transform:translateY(110%);

    transition:transform 1s cubic-bezier(.22,.61,.36,1);

}

.product-heading.show span{

    transform:translateY(0);

}

/*=========================
Grid
=========================*/

.product-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

}

.product-card{

    padding:0 38px 0 0;

    border-right:1px solid #E5E7EB;

}

.product-card:nth-child(2){

    padding:0 38px;

}

.product-card:last-child{

    border-right:none;

    padding:0 0 0 38px;

}
.product-image{

    width:330px;

    margin-bottom:32px;

    overflow:hidden;

}

.product-image img{

    width:330px;

    height:330px;

    object-fit:cover;

    display:block;

}

.product-image-small{

    width:280px;

}

.product-image-small img{

    width:280px;

    height:280px;

}
/*=========================
Image Reveal
=========================*/

.reveal-left{

    clip-path:inset(0 100% 0 0);

    transition:clip-path 1.2s cubic-bezier(.22,.61,.36,1);

}

.reveal-left.show{

    clip-path:inset(0 0 0 0);

}

.reveal-bottom{

    clip-path:inset(100% 0 0 0);

    transition:clip-path 1.2s cubic-bezier(.22,.61,.36,1);

}

.reveal-bottom.show{

    clip-path:inset(0);

}

.reveal-right{

    clip-path:inset(0 0 0 100%);

    transition:clip-path 1.2s cubic-bezier(.22,.61,.36,1);

}

.reveal-right.show{

    clip-path:inset(0);

}

/*=========================
Content
=========================*/

.product-content{

    display:flex;

    flex-direction:column;

}

/*=========================
Title
=========================*/

.product-title{

    margin:0 0 22px;

    overflow:hidden;

}

.product-title span{

    display:inline-block;

    font-size:clamp(24px,2vw,34px);

    font-weight:700;

    line-height:.9;

    letter-spacing:-2px;

    color:#0F172A;

    transform:translateY(110%);

    transition:transform .9s cubic-bezier(.22,.61,.36,1);

}

.product-title.show span{

    transform:translateY(0);

}

/*=========================
Paragraph
=========================*/

.product-text{

    font-size:15px;

    color:#475569;

    line-height:1.2;

    letter-spacing:-.5px;

    margin:0 0 34px;

    max-width:310px;

    opacity:0;

    transition:opacity .9s ease;

}

.product-text.show{

    opacity:1;

}

/*=========================
Button
=========================*/
.product-btn{

    display:inline-block;

    align-self:flex-start;

    padding:12px 22px;

    border:1px solid #D8DEE7;

    background:#fff;

    color:#0F172A;

    text-decoration:none;

    font-size:14px;

    font-weight:500;

    position:relative;

    opacity:0;

    transition:
        opacity .8s ease,
        border-color .3s ease;

}

.product-btn.show{

    opacity:1;

}
.product-btn::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:10px;

    width:0;

    height:1px;

    background:#0F172A;

    transform:translateX(-50%);

    transition:width .35s ease;

}

.product-btn:hover::after{

    width:62%;

}

.product-btn:hover{

    border-color:#334155;

}

/*=========================
Tablet
=========================*/

@media(max-width:991px){

    .product-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .product-card{

        border-right:none;

        border-bottom:1px solid #E5E7EB;

        padding:0 0 45px;

    }

    .product-card:nth-child(2){

        padding:0 0 45px;

    }

    .product-card:last-child{

        padding:0;

        border-bottom:none;

    }

    .product-image img{

        height:420px;

    }

    .product-image-small img{

        height:420px;

    }

}

/*=========================
Mobile
=========================*/

@media(max-width:768px){

    .product-lines{

        padding:50px 0 25px;

    }

    .product-heading-wrapper{

        margin-bottom:42px;

    }

    .product-heading span{

        font-size:42px;

        line-height:.95;

    }

    .product-image img{

        height:320px;

    }

    .product-image-small img{

        height:320px;

    }

    .product-title span{

        font-size:22px;

    }

    .product-text{

        max-width:100%;

        font-size:15px;

        margin-bottom:28px;

    }

    .product-btn{

        font-size:13px;

        padding:11px 20px;

    }

}







/*==================================
FEATURED PRODUCT SYSTEMS
==================================*/

.featured-products{

    background:#fff;

    padding:70px 0 40px;

}

/*=========================
Header
=========================*/

.featured-header{

    margin-bottom:30px;

}

.featured-subtitle{

    margin:0 0 18px;

    overflow:hidden;

}

.featured-subtitle span{

    display:inline-block;

    font-size:18px;

    font-weight:400;

    color:#475569;

    letter-spacing:1px;

    text-transform:uppercase;

}

.featured-heading{

    margin:0;

    overflow:hidden;

}

.featured-heading span{

    display:inline-block;

   font-size:clamp(44px,5vw,72px);

    font-weight:700;

    color:#0F172A;

    line-height:.9;

    letter-spacing:-4px;

}

/*=========================
Divider
=========================*/

.featured-divider{

    width:100%;

    height:1px;

    background:#DCE4ED;

    margin-bottom:40px;

}

/*=========================
Grid
=========================*/

.featured-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:38px;

}

/*=========================
Card
=========================*/

.featured-card{

    display:flex;

    flex-direction:column;

}

/*=========================
Image
=========================*/

.featured-image{

    overflow:hidden;

    margin-bottom:34px;

}

.featured-image img{

    width:100%;

    height:450px;

    object-fit:cover;

    display:block;

}

/*=========================
Content
=========================*/

.featured-content{

    display:flex;

    flex-direction:column;

}

/*=========================
Title
=========================*/

.featured-title{

    margin:0 0 22px;

    overflow:hidden;

}

.featured-title span{

    display:inline-block;

    font-size:clamp(24px,2vw,34px);

    font-weight:700;

    color:#0F172A;

    line-height:.92;

    letter-spacing:-2px;

}

/*=========================
Paragraph
=========================*/

.featured-text{

    max-width:330px;

    margin:0 0 34px;

    font-size:15px;

    font-weight:400;

    color:#475569;

    line-height:1.25;

    letter-spacing:-.4px;

}

/*=========================
Details Link
=========================*/

.featured-link{

    position:relative;

    display:inline-block;

    align-self:flex-start;

    text-decoration:none;

    color:#0F172A;

    font-size:14px;

    font-weight:500;

    text-transform:uppercase;

    letter-spacing:.3px;

    padding-bottom:8px;

}

/* permanent underline */

.featured-link::before{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:58px;

    height:1px;

    background:#C8D1DB;

}

/* animated underline */

.featured-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:1px;

    background:#0F172A;

    transition:width .35s ease;

}

.featured-link:hover::after{

    width:58px;

}

/*==================================
FEATURED PRODUCT ANIMATIONS
==================================*/

/*----------------------------------
Subtitle Reveal
----------------------------------*/

.featured-subtitle span{

    transform:translateY(110%);

    transition:transform .9s cubic-bezier(.22,.61,.36,1);

}

.featured-subtitle.show span{

    transform:translateY(0);

}

/*----------------------------------
Main Heading Reveal
----------------------------------*/

.featured-heading span{

    transform:translateY(110%);

    transition:transform 1s cubic-bezier(.22,.61,.36,1);

}

.featured-heading.show span{

    transform:translateY(0);

}

/*----------------------------------
Product Title Reveal
----------------------------------*/

.featured-title span{

    transform:translateY(110%);

    transition:transform .9s cubic-bezier(.22,.61,.36,1);

}

.featured-title.show span{

    transform:translateY(0);

}

/*----------------------------------
Paragraph Fade
----------------------------------*/

.featured-text{

    opacity:0;

    filter:blur(2px);

    transition:
        opacity .9s ease,
        filter .9s ease;

}

.featured-text.show{

    opacity:1;

    filter:blur(0);

}

/*----------------------------------
Details Link Fade
----------------------------------*/

.featured-link{

    opacity:0;

    filter:blur(2px);

    transition:
        opacity .9s ease,
        filter .9s ease;

}

.featured-link.show{

    opacity:1;

    filter:blur(0);

}

/*==================================
IMAGE REVEALS
==================================*/

/* Left → Right */

.reveal-left{

    clip-path:inset(0 100% 0 0);

    transition:clip-path 1.2s cubic-bezier(.22,.61,.36,1);

}

.reveal-left.show{

    clip-path:inset(0);

}

/* Bottom → Top */

.reveal-bottom{

    clip-path:inset(100% 0 0 0);

    transition:clip-path 1.2s cubic-bezier(.22,.61,.36,1);

}

.reveal-bottom.show{

    clip-path:inset(0);

}

/* Right → Left */

.reveal-right{

    clip-path:inset(0 0 0 100%);

    transition:clip-path 1.2s cubic-bezier(.22,.61,.36,1);

}

.reveal-right.show{

    clip-path:inset(0);

}

/*==================================
TABLET
==================================*/

@media (max-width:991px){

    .featured-products{

        padding:60px 0 30px;

    }

    .featured-divider{

        margin-bottom:50px;

    }

    .featured-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .featured-image img{

        height:480px;

    }

    .featured-heading span{

        font-size:56px;

    }

    .featured-title span{

        font-size:30px;

    }

    .featured-text{

        max-width:100%;

    }

}

/*==================================
MOBILE
==================================*/

@media (max-width:768px){

    .featured-products{

        padding:50px 0 25px;

    }

    .featured-header{

        margin-bottom:35px;

    }

    .featured-subtitle{

        margin-bottom:14px;

    }

    .featured-subtitle span{

        font-size:15px;

        letter-spacing:.8px;

    }

    .featured-heading span{

        font-size:30px;

        line-height:.95;

        letter-spacing:-2px;

    }

    .featured-divider{

        margin-bottom:40px;

    }

    .featured-grid{

        gap:45px;

    }

    .featured-image{

        margin-bottom:25px;

    }

    .featured-image img{

        height:340px;

    }

    .featured-title{

        margin-bottom:16px;

    }

    .featured-title span{

        font-size:22px;

    }

    .featured-text{

        font-size:15px;

        line-height:1.35;

        margin-bottom:24px;

    }

    .featured-link{

        font-size:13px;

        padding-bottom:6px;

    }

    .featured-link::before{

        width:50px;

    }

    .featured-link:hover::after{

        width:50px;

    }

}






/*==================================
BESPOKE FABRICATION
==================================*/

.fabrication-section{

    display:grid;

    grid-template-columns:60% 40%;

    width:100%;

    min-height:300px;

    background:#fff;

}

/*=========================
Image
=========================*/
.fabrication-image{

    height:100%;

}

.fabrication-image img{

    width:100%;
    height:100%;
    object-fit:cover;

}

/*=========================
Content Side
=========================*/
.fabrication-content{

    background:#0F172A;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:60px 60px;   /* was 80px 70px */

}

.fabrication-inner{

    width:100%;

    max-width:470px;

}

/*=========================
Heading
=========================*/

.fabrication-title{

      margin:0 0 36px;   /* was 48px */

    overflow:hidden;

}

.fabrication-title span{

    display:inline-block;

    font-size:clamp(56px,5vw,78px);

    font-weight:700;

    color:#FFFFFF;

    line-height:.88;

    letter-spacing:-2px;

}

/*=========================
List
=========================*/

.fabrication-list{

       margin:0 0 40px;   /* was 55px */

    padding-left:24px;

    color:#F1F5F9;

}

.fabrication-list li{

    margin-bottom:16px;

    font-size:15px;

    line-height:1.2;

    letter-spacing:-0.4px;

}

.fabrication-list li:last-child{

    margin-bottom:0;

}

.fabrication-list strong{

    font-weight:600;

    color:#FFFFFF;

}

/*=========================
Button
=========================*/

.fabrication-btn{

    position:relative;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#FFFFFF;

    color:#0F172A;

    text-decoration:none;

    padding:18px 34px;

    font-size:15px;

    font-weight:500;

    letter-spacing:-0.3px;

    transition:background .35s ease,color .35s ease;

}

/* Permanent underline */

.fabrication-btn::before{

    content:"";

    position:absolute;

    left:34px;

    bottom:14px;

    width:0;

    height:1px;

    background:#0F172A;

    transition:width .35s ease;

}

.fabrication-btn:hover{

    background:#F8FAFC;

}

.fabrication-btn:hover::before{

    width:calc(100% - 68px);

}

/*==================================
FABRICATION ANIMATIONS
==================================*/

/*=========================
Heading Reveal
=========================*/

.fabrication-title span{

    transform:translateY(110%);

    transition:transform .95s cubic-bezier(.22,.61,.36,1);

}

.fabrication-title.show span:nth-child(1){

    transform:translateY(0);

    transition-delay:.08s;

}

.fabrication-title.show span:nth-child(3){

    transform:translateY(0);

    transition-delay:.18s;

}

/*=========================
Image Curtain Reveal
=========================*/

.fabrication-image{

    clip-path:inset(0 100% 0 0);

    transition:clip-path 1.25s cubic-bezier(.22,.61,.36,1);

}

.fabrication-image.show{

    clip-path:inset(0);

}

/*==================================
TABLET
==================================*/

@media (max-width:991px){

    .fabrication-section{

        grid-template-columns:1fr;

        min-height:auto;

    }

    .fabrication-image{

        height:520px;

    }

    .fabrication-content{

        padding:70px 50px;

    }

    .fabrication-inner{

        max-width:100%;

    }

    .fabrication-title{

        margin-bottom:40px;

    }

    .fabrication-title span{

        font-size:56px;

    }

    .fabrication-list{

        margin-bottom:45px;

    }

}

/*==================================
MOBILE
==================================*/

@media (max-width:768px){

    .fabrication-image{

        height:320px;

    }

    .fabrication-content{

        padding:45px 28px;

    }

    .fabrication-title{

        margin-bottom:28px;

    }

    .fabrication-title span{

        font-size:36px;

        line-height:.92;

        letter-spacing:-2px;

    }

    .fabrication-list{

        padding-left:18px;

        margin-bottom:34px;

    }

    .fabrication-list li{

        font-size:15px;

        line-height:1.28;

        margin-bottom:14px;

    }

    .fabrication-btn{

        width:100%;

        justify-content:center;

        padding:16px 22px;

        font-size:14px;

    }

    .fabrication-btn::before{

        left:22px;

        bottom:12px;

    }

    .fabrication-btn:hover::before{

        width:calc(100% - 44px);

    }

}






/*==================================
PROJECT CTA
==================================*/

.project-cta{

    background:#E2E8F0;

    padding:90px 0;

}

.project-cta-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

/*=========================
Heading
=========================*/

.project-cta-title{

    margin:0 0 20px;

    overflow:hidden;
      padding-bottom:10px;

}

.project-cta-title span{

    display:inline-block;

    font-size:clamp(46px,4vw,68px);

    font-weight:700;

    color:#0F172A;

    line-height:.9;

    letter-spacing:-2px;

}

/*=========================
Subtitle
=========================*/

.project-cta-text{

    margin:0 auto 42px;

    max-width:640px;

    font-size:18px;

    font-weight:400;

    color:#334155;

    line-height:1.3;

    letter-spacing:-.5px;

}

/*=========================
Buttons
=========================*/

.project-cta-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    flex-wrap:wrap;

}
.project-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:170px;

    height:52px;

    padding:0 28px;

    background:#334155;

    color:#FFFFFF;

    text-decoration:none;

    font-size:15px;

    font-weight:500;

    letter-spacing:-.3px;

    transition:background .35s ease;

}

.project-btn:hover{

    background:#1E293B;

}

/* Text */

.project-btn span{

    position:relative;

    display:inline-block;

}

/* Underline */

.project-btn span::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-4px;

    width:0;

    height:1px;

    background:#FFFFFF;

    transition:width .35s ease;

}

.project-btn:hover span::after{

    width:100%;

}
/*==================================
Heading Reveal
==================================*/

.project-cta-title span{

    transform:translateY(110%);

    transition:transform .95s cubic-bezier(.22,.61,.36,1);

}

.project-cta-title.show span{

    transform:translateY(0);

}
/*==================================
TABLET
==================================*/

@media (max-width:991px){

    .project-cta{

        padding:75px 0;

    }

    .project-cta-title span{

        font-size:58px;

    }

}

/*==================================
MOBILE
==================================*/

@media (max-width:768px){

    .project-cta{

        padding:60px 0;

    }

    .project-cta-title{

        margin-bottom:16px;

    }

    .project-cta-title span{

        font-size:42px;

        line-height:.92;

    }

    .project-cta-text{

        font-size:15px;

        margin-bottom:30px;

        line-height:1.35;

    }

    .project-cta-buttons{

        flex-direction:column;

        align-items:center;

        gap:14px;

    }

    .project-btn{

        width:220px;

        height:48px;

        font-size:14px;

    }

}







/*==================================
CONTACT PAGE
==================================*/

.contact-page{

    padding:110px 0;

    background:#FFFFFF;

    overflow:hidden;

}

.contact-page .container{

    max-width:1400px;

    margin:0 auto;

    padding:0 50px;

}

/*==================================
HEADING
==================================*/

.contactpage-heading-mask{

    overflow:hidden;

    margin-bottom:28px;

}

.contactpage-heading{

    color:#0F172A;

    font-size:clamp(62px,8vw,110px);

    font-weight:700;

    line-height:.88;

    letter-spacing:-4px;

    transform:translateY(100%);

    transition:transform 1.15s cubic-bezier(.22,.61,.36,1);

    will-change:transform;

}

.contactpage-heading.show{

    transform:translateY(0);

}

/*==================================
INTRO
==================================*/

.contactpage-intro{

    max-width:680px;

    color:#475569;

    font-size:17px;

    line-height:1.45;

    letter-spacing:-.2px;

    margin-bottom:70px;

}

/*==================================
CONTENT BLOCKS
==================================*/

.contactpage-block{

    margin-bottom:55px;

}

.contactpage-block:last-of-type{

    margin-bottom:45px;

}

.contactpage-block h3{

    color:#0F172A;

    font-size:30px;

    font-weight:700;

    line-height:1;

    letter-spacing:-2px;

    margin-bottom:18px;

}

.contactpage-link{

    display:inline-block;

    color:#475569;

    font-size:16px;

    line-height:1.5;

    letter-spacing:-.3px;

    text-decoration:none;

    transition:opacity .3s ease;

}

.contactpage-link:hover{

    opacity:.7;

}

/*==================================
ADDRESS
==================================*/

.contactpage-address{

    color:#475569;

    font-size:16px;

    line-height:1.55;

    letter-spacing:-.3px;

    max-width:460px;

}

/*==================================
MAP
==================================*/

.contactpage-map{

    width:100%;

    margin-top:20px;

    overflow:hidden;

    border:1px solid #CBD5E1;

}

.contactpage-map iframe{

    width:100%;

    height:620px;

    border:none;

    display:block;

}


/*==================================
MAP REVEAL
==================================*/
/* 
.contactpage-map-reveal{

    clip-path:inset(0 0 0 100%);

    opacity:0;

    transition:
        clip-path 1.25s cubic-bezier(.22,.61,.36,1),
        opacity .6s ease;

    will-change:clip-path,opacity;

}

.contactpage-map-reveal.show{

    clip-path:inset(0);

    opacity:1;

} */
/*==================================
TABLET
==================================*/

@media(max-width:992px){

.contact-page{

padding:90px 0;

}

.contact-page .container{

padding:0 40px;

}

.contactpage-heading{

font-size:clamp(54px,8vw,82px);

}

.contactpage-intro{

max-width:100%;

font-size:16px;

margin-bottom:55px;

}

.contactpage-block{

margin-bottom:45px;

}

.contactpage-block h3{

font-size:26px;

}

.contactpage-link,
.contactpage-address{

font-size:17px;

}

.contactpage-map iframe{

height:500px;

}

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.contact-page{

padding:70px 0;

}

.contact-page .container{

padding:0 20px;

}

.contactpage-heading-mask{

margin-bottom:22px;

}

.contactpage-heading{

font-size:48px;

letter-spacing:-3px;

line-height:.92;

}

.contactpage-intro{

font-size:15px;

line-height:1.5;

margin-bottom:45px;

}

.contactpage-block{

margin-bottom:38px;

}

.contactpage-block h3{

font-size:22px;

letter-spacing:-1.5px;

margin-bottom:12px;

}

.contactpage-link,

.contactpage-address{

font-size:16px;

line-height:1.6;

}

.contactpage-map{

margin-top:10px;

margin-left:-20px;

margin-right:-20px;

width:calc(100% + 40px);

border:none;

}

.contactpage-map iframe{

height:320px;

}

}















/*==================================
FOOTER
==================================*/

.footer{

    background:#111827;

       padding:80px 0 50px;

    overflow:hidden;

}

/*==================================
TOP
==================================*/

.footer-top{

    position:relative;

}

/*==================================
SOCIAL
==================================*/

.footer-social{

    position:absolute;

    top:0;
    right:0;

    display:flex;
    gap:22px;

}

.footer-social img{

    width:34px;

    display:block;

    transition:opacity .3s ease, filter .3s ease;

}

.footer-social img:hover{

    opacity:.8;

    filter:brightness(.85);

}

/*==================================
CONTENT
==================================*/

.footer-content{

     padding-top:90px;

    max-width:760px;

}

/*==================================
HEADING
==================================*/
.fade-heading{

    font-size:clamp(32px,3vw,24px);

    font-weight:700;

    color:#fff;

    line-height:.75;

    letter-spacing:-1px;

    margin-bottom:15px;

}

/*==================================
SUBTITLE
==================================*/
.footer-subtitle{

    font-size:15px;

    color:#475569;

    margin-bottom:42px;

}

/*==================================
ADDRESS
==================================*/

.footer-label{

    color:#475569;

    font-size:15px;

    font-weight:400;

    text-transform:uppercase;

    margin-bottom:5px;

}

.footer-address{

    color:#fff;

    font-size:18px;

    line-height:1.45;

    max-width:880px;

}

/*==================================
DIVIDER
==================================*/

.footer-divider{

    width:100%;

    height:1px;

    background:#334155;

     margin:55px 0 28px;

}

/*==================================
BOTTOM
==================================*/

.footer-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-copy{

    color:#475569;

    font-size:14px;
 letter-spacing:-1px;

}
.footer-tag{

    color:#475569;

    font-size:14px;

    letter-spacing:-0.5px;

}

.footer-credit{

    color:#475569;

    text-decoration:none;

    transition:color .3s ease;

}

.footer-credit:hover{

    color:#FFFFFF;

}

/*==================================
FOOTER FADE (WIX STYLE)
==================================*/

.fade-heading,
.footer-subtitle,
.footer-label,
.footer-address,
.footer-social,
.footer-bottom{

    opacity:0;

   filter:blur(2px);

    transition:
        opacity 1.2s ease,
        filter 1.2s ease;

    will-change:opacity,filter;

}

.fade-heading.show,
.footer-subtitle.show,
.footer-label.show,
.footer-address.show,
.footer-social.show,
.footer-bottom.show{

    opacity:1;

    filter:blur(0);

}
/*==================================
TABLET
==================================*/

@media(max-width:1100px){

.footer-content{

max-width:650px;

}

.fade-heading{

font-size:58px;

}

.footer-address{

font-size:20px;

}

}

/*==================================
MOBILE
==================================*/

@media(max-width:768px){

.footer{

padding:70px 0 40px;

}

.footer-top{

display:flex;

flex-direction:column;

}

.footer-social{

position:static;

margin-bottom:45px;

display:flex;

justify-content:flex-start;

gap:18px;

order:1;

}

.footer-content{

padding-top:0;

order:2;

}
.footer-social img{
    width: 24px;
}
.fade-heading{

font-size:24px;

letter-spacing:-1px;
line-height: 1.1;
margin-bottom:18px;

}

.footer-subtitle{

font-size:15px;
letter-spacing:-1px;
margin-bottom:45px;

}

.footer-label{

font-size:15px;
letter-spacing:-1px;

}

.footer-address{
letter-spacing:-0.5px;
font-size:14px;

}

.footer-divider{

margin:55px 0 28px;

}

.footer-bottom{

flex-direction:column;

align-items:flex-start;

gap:16px;

}

.footer-copy,
.footer-tag{

font-size:14px;
letter-spacing:-1px;

}

}