/* ===========================================================
   URBAN BRANDING V2
   FOUNDATION
=========================================================== */

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#F8FBF8;

    color:#1B1B1B;

    overflow-x:hidden;

    line-height:1.6;

}

/* VARIABLES */

:root{

    --primary:#0B5D3B;
    --primary-light:#EAF7EF;
    --gold:#D8A328;

    --text:#1B1B1B;
    --gray:#6B7280;

    --white:#ffffff;

    --radius:22px;

    --shadow:
    0 12px 35px rgba(0,0,0,.08);

    --transition:.35s ease;

}

/* TYPOGRAPHY */

h1,h2,h3,h4{

    line-height:1.1;

    font-weight:700;

}

h1{

    font-size:72px;

}

h2{

    font-size:52px;

}

h3{

    font-size:32px;

}

p{

    color:var(--gray);

    font-size:17px;

}

a{

    text-decoration:none;

    color:inherit;

}

img{

    display:block;

    max-width:100%;

}

ul{

    list-style:none;

}

/* LAYOUT */

.container{

    width:min(1180px,90%);

    margin:auto;

}

section{

    padding:120px 0;

}

/* BUTTONS */

.cta-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:15px 28px;

    border-radius:999px;

    background:var(--primary);

    color:white;

    font-weight:600;

    transition:var(--transition);

}

.cta-btn:hover{

    transform:translateY(-3px);

    box-shadow:

    0 15px 30px rgba(11,93,59,.25);

}

.portfolio-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:14px 26px;

    border-radius:999px;

    border:2px solid var(--primary);

    color:var(--primary);

    font-weight:600;

    transition:var(--transition);

}

.portfolio-btn:hover{

    background:var(--primary);

    color:white;

}

/* SECTION TITLE */

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.section-heading span{

    color:var(--gold);

    font-weight:700;

    letter-spacing:2px;

    font-size:14px;

}

.section-heading h2{

    margin-top:15px;

}

.section-heading p{

    max-width:650px;

    margin:20px auto 0;

}

/* SCROLLBAR */



/* PROGRESS BAR */

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:linear-gradient(
    90deg,
    var(--primary),
    var(--gold)
    );

    z-index:99999;

}
/* ===========================================================
   NAVBAR
=========================================================== */

.header{

    position:relative;

    top:0;
    left:0;

    width:100%;

    z-index:9999;

    padding:20px 0;

    transition:.4s ease;

    background:#FAF8F3;

}

.header.scrolled{

    padding:14px 0;

    background:#FAF8F3;

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(0,0,0,.05);

    box-shadow:
    0 10px 40px rgba(0,0,0,.06);

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* LOGO */

.logo{

    display:flex;

    align-items:center;

    gap:14px;

    font-weight:700;

}

.logo-circle{

    width:48px;

    height:48px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #118b58
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    font-weight:700;

    font-size:18px;

    box-shadow:
    0 10px 25px rgba(11,93,59,.25);

}

.logo span{

    font-size:20px;

}

/* NAV LINKS */

.nav-links{

    display:flex;

    align-items:center;

    gap:40px;

}

.nav-links a{

    position:relative;

    color:var(--text);

    font-weight:500;

    transition:.3s;

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--gold);

    transition:.35s;

}

.nav-links a:hover{

    color:var(--primary);

}

.nav-links a:hover::after{

    width:100%;

}

/* RIGHT SIDE */

.nav-right{

    display:flex;

    gap:15px;

    align-items:center;

}

/* HAMBURGER */

.hamburger{

    width:48px;

    height:48px;

    display:none;

    position:relative;

    border:none;

    background:none;

    cursor:pointer;

    z-index:10001;

}

.hamburger span{

    position:absolute;

    left:10px;

    width:28px;

    height:3px;

    background:var(--primary);

    border-radius:999px;

    transition:.35s;

}

.hamburger span:nth-child(1){

    top:14px;

}

.hamburger span:nth-child(2){

    top:22px;

}

.hamburger span:nth-child(3){

    top:30px;

}

/* OPEN */

.hamburger.active span:nth-child(1){

    transform:rotate(45deg);

    top:22px;

}

.hamburger.active span:nth-child(2){

    opacity:0;

}

.hamburger.active span:nth-child(3){

    transform:rotate(-45deg);

    top:22px;

}

/* MOBILE MENU */

.mobile-menu{

    position:fixed;

    inset:0;

    background:rgba(248,251,248,.96);

    backdrop-filter:blur(25px);

    -webkit-backdrop-filter:blur(25px);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:28px;

    transform:translateY(-100%);

    transition:.45s ease;

    z-index:9998;

}

.mobile-menu.active{

    transform:translateY(0);

}

.mobile-menu a{

    font-size:32px;

    font-weight:600;

    transition:.3s;

}

.mobile-menu a:hover{

    color:var(--primary);

}

.mobile-cta{

    margin-top:30px;

    background:var(--primary);

    color:white !important;

    padding:15px 32px;

    border-radius:999px;

    font-size:17px !important;

    box-shadow:
    0 12px 30px rgba(11,93,59,.20);

}

/* Prevent scrolling when menu is open */

body.menu-open{

    overflow:hidden;

}
/*==================================================
HERO
==================================================*/
/*======================================
 HERO
=======================================*/

.hero{
    position: relative;
    min-height: 100h;
    padding:80px 0 60px;
    overflow: hidden;

    background:#FAF8F3;
}

/* Soft luxury background */

.hero::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at 20% 20%, rgba(11,93,59,.04), transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(200,155,60,.05), transparent 35%);

    pointer-events:none;
}

.hero-content{

    position:relative;
    z-index:5;

    max-width:1100px;

    margin:auto;

    text-align:center;

}

/*------------------------------------*/

.hero-tag{

    display:inline-flex;
    align-items:center;
    gap:12px;

    font-size:14px;

    letter-spacing:4px;

    color:#8c6a2e;

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:10px;

}

.hero-tag::before{

content:"";

width:40px;
height:1px;

background:#C89B3C;

}

/*------------------------------------*/

.hero h1{

font-size: clamp(46px, 5.5vw, 80px);

line-height:.8;

font-weight:700;

letter-spacing:-2px;

margin-bottom:24px;

font-family:"Cormorant Garamond",serif;

}

.hero h1 > span{
    display:block;

}

.hero .black{

color:#141414;

}

.hero .green{

color:#0B5D3B;

}

/*------------------------------------*/

.underline{

width:180px;
height:5px;

border-radius:100px;

margin:35px auto;

background:linear-gradient(
90deg,
transparent,
#C89B3C,
transparent
);

}

/*------------------------------------*/

.hero p{

font-size:22px;

line-height:1.8;

max-width:760px;

margin:auto;

color:#565656;

}

/*------------------------------------*/

.hero-buttons{

margin-top:55px;

display:flex;

justify-content:center;

gap:24px;

flex-wrap:wrap;

}

/*------------------------------------*/

.btn-primary{

padding:18px 38px;

background:#0B5D3B;

border-radius:60px;

color:#fff;

font-weight:600;

text-decoration:none;

display:flex;

align-items:center;

gap:12px;

transition:.35s;

}

.btn-primary:hover{

transform:translateY(-6px);

box-shadow:0 20px 40px rgba(11,93,59,.18);

}

/*------------------------------------*/

.btn-secondary{

padding:18px 38px;

border:2px solid #C89B3C;

border-radius:60px;

color:#8c6a2e;

text-decoration:none;

font-weight:600;

display:flex;

align-items:center;

gap:12px;

transition:.35s;

}

.btn-secondary:hover{

background:#C89B3C;

color:white;

}

/*------------------------------------*/

.scroll-indicator{

margin-top:90px;

display:flex;

flex-direction:column;

align-items:center;

gap:12px;

}

.mouse{

width:34px;
height:55px;

border:2px solid #222;

border-radius:30px;

display:flex;

justify-content:center;

padding-top:10px;

}

.mouse span{

width:5px;
height:11px;

background:#222;

border-radius:20px;

animation:scroll 2s infinite;

}

@keyframes scroll{

0%{

opacity:0;
transform:translateY(0);

}

40%{

opacity:1;

}

100%{

opacity:0;
transform:translateY(15px);

}

}
.service-card{

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:5px;

    height:0;

    background:#ffffff;

    transition:.45s;

}

.service-card:hover::before{

    height:100%;

}

.service-card:hover{

    box-shadow:

    0 20px 60px rgba(0,0,0,.1);

}

.service-card h3{

    transition:.3s;

}

.service-card:hover h3{

    color:#B78B2C;

}

#services{

    padding:100px 0;

}

.section-title{

    text-align:center;

    font-size:2.5rem;

    margin-bottom:60px;

    color:var(--primary);

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    background:white;

    padding:35px;

    border-radius:22px;

    box-shadow:var(--shadow);

    border:1px solid transparent;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--secondary);

}

.service-card h3{

    margin-bottom:18px;

    color:var(--primary);

}

.service-card p{

    color:#666;

    line-height:1.8;

}

/*===============================
        IMPACT SECTION
================================*/

.impact-section{
    width:100%;
    padding:40px 6%;
    background:#FAF8F3;
}

.impact-container{
    max-width:1500px;
    margin:auto;
}

.impact-heading{
    text-align:center;
    margin-bottom:45px;
}

.impact-heading h2{

    font-size:52px;
    font-weight:800;
    color:#0A5C34;
    line-height:1.1;
    margin-bottom:12px;
    letter-spacing:-1px;
}

.impact-heading p{

    font-size:20px;
    color:#777;
    font-weight:500;
}

.impact-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.impact-card{
    background:#fff;
    border-radius:26px;
    padding:32px;
    border:1px solid #ECECEC;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
}

.impact-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.impact-card h3{
    font-size:56px;
    color:#D5A21D;
    font-weight:800;
    line-height:1;
    margin-bottom:10px;
    letter-spacing:-2px;
}

.impact-card span{
    font-size:18px;
    color:#222;
    font-weight:500;
}

/*=========================
        CTA
=========================*/

.cta-section{
    padding: 70px 6%;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.cta-box{
    max-width: 1450px;
    margin: auto;
    background: #0B5A34;
    border-radius: 36px;

    padding: 70px 40px;

    text-align: center;
    position: relative;
    overflow: hidden;

    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

/* Moving Background */

.cta-box::before{

content:"";

position:absolute;

width:800px;
height:800px;

background:radial-gradient(circle,
rgba(212,162,29,.18),
transparent 70%);

top:-350px;
left:-250px;

animation:moveGlow 10s infinite alternate ease-in-out;

}

.cta-box::after{

content:"";

position:absolute;

width:700px;
height:700px;

background:radial-gradient(circle,
rgba(255,255,255,.08),
transparent 70%);

bottom:-300px;
right:-250px;

animation:moveGlow2 9s infinite alternate ease-in-out;

}

@keyframes moveGlow{

to{

transform:translate(120px,70px);

}

}

@keyframes moveGlow2{

to{

transform:translate(-100px,-80px);

}

}

.cta-tag{

display:inline-block;

background:rgba(255,255,255,.12);

padding:10px 24px;

border-radius:100px;

color:#fff;

font-weight:600;

margin-bottom:35px;

backdrop-filter:blur(12px);

}

.cta-box h2{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:18px;
    color:#fff;
}

.cta-box p{

font-size:22px;

color:rgba(255,255,255,.85);

max-width:700px;

margin:0 auto 40px;

line-height:1.6;

margin-bottom:55px;

position:relative;

}

.cta-btn{

display:inline-flex;

align-items:center;

gap:15px;

padding:18px 34px;

border-radius:100px;

background:#fff;

color:#0B5A34;

font-size:20px;

font-weight:700;

text-decoration:none;

transition:.4s;

position:relative;

 z-index:999;

overflow:hidden;

}

.cta-btn svg{

width:24px;

height:24px;

transition:.35s;

}

.cta-btn:hover{

transform:translateY(-8px);

box-shadow:

0 18px 45px rgba(0,0,0,.25);

}

.cta-btn:hover svg{

transform:translateX(8px);

}

/* Shine */

.cta-btn::before{

content:"";

position:absolute;

top:0;

left:-120%;

width:60%;

height:100%;

background:

linear-gradient(

120deg,

transparent,

rgba(255,255,255,.7),

transparent);

transform:skewX(-20deg);

transition:.7s;

}

.cta-btn:hover::before{

left:140%;

}

/* Floating circles */

.cta-glow{

position:absolute;

border-radius:50%;

filter:blur(100px);

z-index:0;

pointer-events:none;

}

.glow1{

width:280px;
height:280px;

background:#D4A21D;

top:120px;
left:120px;

opacity:.15;

animation:float 6s infinite alternate;

}

.glow2{

width:350px;
height:350px;

background:#0B5A34;

right:120px;
bottom:50px;

opacity:.2;

animation:float2 7s infinite alternate;

}

@keyframes float{

to{

transform:translateY(40px);

}

}

@keyframes float2{

to{

transform:translateY(-40px);

}

}

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-img{
    height:75px;
    width:auto;
    display:block;
    transition:0.35s ease;
}

.logo:hover .logo-img{
    transform:scale(1.05);
}
/*==============================
            FOOTER
===============================*/
/* ==========================
   FOOTER
========================== */

.footer{
    background:#101010;
    color:#F5F4F0;
    padding:120px 8% 40px;
    overflow:hidden;
}

/* ==========================
   CTA
========================== */

.footer-cta{
    max-width:900px;
    margin:0 auto;
    text-align:center;
}

.footer-cta h2{
    font-family:"Cormorant Garamond",serif;
    font-size:clamp(55px,7vw,100px);
    font-weight:700;
    line-height:.95;
    margin-bottom:25px;
}

.footer-cta h2 span{
    color:#B88A2E;
    display:block;
}

.footer-cta p{
    max-width:620px;
    margin:auto;
    color:#C6C6C6;
    font-size:18px;
    line-height:1.8;
}

/* ==========================
   BUTTONS
========================== */

.footer-buttons{
    margin-top:45px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.footer-buttons a{
    text-decoration:none;
    padding:16px 34px;
    border-radius:60px;
    font-weight:600;
    transition:.35s;
}

.footer-buttons a:first-child{
    background:#0B5D3B;
    color:white;
}

.footer-buttons a:first-child:hover{
    background:#0f7148;
    transform:translateY(-4px);
}

.footer-buttons a:last-child{
    border:1px solid rgba(255,255,255,.15);
    color:#F5F4F0;
}

.footer-buttons a:last-child:hover{
    border-color:#B88A2E;
    color:#B88A2E;
}

/* ==========================
   DIVIDER
========================== */

.footer-divider{
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
    margin:90px 0 70px;
}

/* ==========================
   GRID
========================== */

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:70px;
}

.footer-grid img{
    width:170px;
    margin-bottom:25px;
}

.footer-grid p{
    color:#BEBEBE;
    line-height:1.9;
    max-width:340px;
}

.footer-grid h4{
    margin-bottom:22px;
    font-size:18px;
    color:white;
}

.footer-grid a{
    display:block;
    text-decoration:none;
    color:#BEBEBE;
    margin-bottom:16px;
    transition:.3s;
}

.footer-grid a:hover{
    color:#B88A2E;
    transform:translateX(6px);
}

/* ==========================
   BOTTOM
========================== */

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    margin-top:70px;
    padding-top:30px;

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    color:#999;
    font-size:15px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:992px){

.footer-grid{

grid-template-columns:1fr 1fr;

gap:50px;

}

}

@media(max-width:700px){

.footer{

padding:90px 30px 35px;

}

.footer-cta h2{

font-size:54px;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.footer-grid p{

margin:auto;

}

.footer-buttons{

flex-direction:column;

align-items:center;

}

.footer-buttons a{

width:100%;
max-width:320px;

text-align:center;

}

.footer-bottom{

justify-content:center;
text-align:center;

}

}

/*==========================================
WHY US
==========================================*/

.why-us{
    padding:40px 0;
    background:#FAF8F3;
    position:relative;
    overflow:hidden;
}

.why-grid{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:80px;
    align-items:center;
}

/* LEFT */

.why-left{
    position:sticky;
    top:140px;
}

.section-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:100px;
    background:rgba(11,93,59,.08);
    color:#0B5D3B;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:28px;
}

.why-left h2{
    font-size:72px;
    line-height:1;
    margin-bottom:30px;
    color:#171717;
    font-weight:800;
}

.why-left p{
    font-size:19px;
    line-height:1.9;
    max-width:520px;
    color:#666;
}

/* Decorative circles */

.circle-wrapper{
    position:relative;
    width:260px;
    height:260px;
    margin-top:70px;
}

.circle{
    position:absolute;
    border-radius:50%;
    border:1px solid rgba(11,93,59,.12);
    animation:rotateCircle 18s linear infinite;
}

.c1{
    width:240px;
    height:240px;
}

.c2{
    width:170px;
    height:170px;
    left:35px;
    top:35px;
    animation-direction:reverse;
}

.c3{
    width:100px;
    height:100px;
    left:70px;
    top:70px;
}

.circle::after{
    content:"";
    width:12px;
    height:12px;
    background:#C89B3C;
    border-radius:50%;
    position:absolute;
    top:-6px;
    left:50%;
    transform:translateX(-50%);
}

@keyframes rotateCircle{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

/* RIGHT */

.why-right{
    display:grid;
    gap:28px;
}

.why-card{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(22px);

    border-radius:28px;

    padding:42px;

    border:1px solid rgba(11,93,59,.08);

    box-shadow:
    0 20px 60px rgba(0,0,0,.05);

    transition:.45s;

    position:relative;

    overflow:hidden;

}

.why-card::before{

content:"";

position:absolute;

left:0;
top:0;

width:5px;
height:0;

background:#C89B3C;

transition:.45s;

}

.why-card:hover::before{

height:100%;

}

.why-card:hover{

transform:translateY(-12px);

box-shadow:
0 35px 80px rgba(11,93,59,.12);

}

.icon{

width:70px;
height:70px;

border-radius:22px;

background:linear-gradient(
135deg,
#0B5D3B,
#14784e
);

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:30px;

margin-bottom:24px;

transition:.45s;

}

.why-card:hover .icon{

transform:rotate(-8deg) scale(1.1);

background:linear-gradient(
135deg,
#C89B3C,
#D9B14C
);

}

.why-card h3{

font-size:30px;

margin-bottom:15px;

color:#111;

}

.why-card p{

font-size:17px;

line-height:1.8;

color:#666;

}

/* Glow */

.why-card::after{

content:"";

position:absolute;

width:320px;
height:320px;

border-radius:50%;

background:radial-gradient(circle,
rgba(200,155,60,.12),
transparent 70%);

top:-180px;
right:-120px;

opacity:0;

transition:.45s;

}

.why-card:hover::after{

opacity:1;

}

/* Background */

.why-bg{

position:absolute;
inset:0;
overflow:hidden;
pointer-events:none;

}

.why-bg span{

position:absolute;
border-radius:50%;
filter:blur(90px);
opacity:.16;

animation:floatBlob 14s ease-in-out infinite;

}

.why-bg span:nth-child(1){

width:420px;
height:420px;

background:#FAF8F3;

top:-120px;
left:-100px;

}

.why-bg span:nth-child(2){

width:350px;
height:350px;

background:#FAF8F3;

right:-120px;
top:120px;

animation-delay:3s;

}

.why-bg span:nth-child(3){

width:500px;
height:500px;

background:#FAF8F3;

bottom:-180px;
right:20%;

animation-delay:6s;

}

@keyframes floatBlob{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-40px);

}

}


/*======================================
FLOATING ICONS
=======================================*/

.floating-icons{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:1;
    overflow:hidden;
}

.hero-content{
    position:relative;
    z-index:5;
}

.float{
    position:absolute;
    width:55px;
    height:auto;
    opacity:.9;
    transition:transform .4s ease;
    animation:float 7s ease-in-out infinite;
}

/* LEFT */

.star1{
    top:18%;
    left:5%;
    width:42px;
}

.arrow1{
    top:34%;
    left:10%;
    width:70px;
    animation-delay:1s;
}

.chart1{
    bottom:18%;
    left:7%;
    width:75px;
    animation-delay:2s;
}

.wave1{
    bottom:6%;
    left:4%;
    width:65px;
}

.dots1{
    top:30%;
    left:3%;
    width:90px;
}

/* CENTER */

.circle1{
    top:15%;
    left:25%;
    width:42px;
}

/* RIGHT */

.spark1{
    top:18%;
    right:7%;
    width:42px;
}

.target1{
    top:55%;
    right:5%;
    width:95px;
    animation-delay:1.5s;
}

.pen1{
    bottom:10%;
    right:15%;
    width:85px;
}

@keyframes float{

0%,100%{

transform:
translateY(0px)
rotate(0deg);

}

50%{

transform:
translateY(-14px)
rotate(4deg);

}

}

.star1{
animation-duration:8s;
}

.arrow1{
animation-duration:7s;
}

.chart1{
animation-duration:9s;
}

.target1{
animation-duration:10s;
}

.pen1{
animation-duration:8.5s;
}

.spark1{
animation-duration:6s;
}

.circle1{
animation-duration:11s;
}

.wave1{
animation-duration:9s;
}




.build-section{

position:relative;

padding:100px 20px;

text-align:center;

background:#FAF8F3;

overflow:hidden;

}

.section-tag{

letter-spacing:5px;

font-size:13px;

color:#8C6A2E;

font-weight:600;

}

.build-section h2{

margin-top:35px;

font-size:clamp(60px,7vw,110px);

font-weight:700;

line-height:1;

font-family:"Cormorant Garamond",serif;

}

#changing-word{

display:block;

color:#0B5D3B;

margin-top:15px;

}

.build-btn{

display:inline-block;

margin-top:50px;

padding:18px 42px;

background:#0B5D3B;

color:white;

border-radius:60px;

text-decoration:none;

font-weight:600;

transition:.3s;

}

.build-btn:hover{

transform:translateY(-5px);

}

.shape{

position:absolute;

left:50%;

top:50%;

transform:translate(-50%,-50%);

width:550px;

height:550px;

opacity:.08;

background:url("assets/line-shape.svg") center/contain no-repeat;

pointer-events:none;

}

#changing-word{

transition:.35s ease;

display:block;

color:#0B5D3B;

}


.hero-build{
    font-family:"Cormorant Garamond", serif;
    font-size:clamp(60px,7vw,110px);
    line-height:1;
    text-align:center;
}

.typing-wrapper{
    display:block;
    color:#0B5D3B;
    margin-top:10px;
    min-height:1.1em;
}

.cursor{
    color:#B8860B;
    animation:blink .8s infinite;
}

@keyframes blink{

0%,50%{
opacity:1;
}

51%,100%{
opacity:0;
}

}

.trusted{

padding:50px 0;

overflow:hidden;

background:#FAF8F3;

}

.trusted-top{

text-align:center;

margin-bottom:50px;

}

.trusted-top span{

letter-spacing:4px;

font-size:13px;

color:#B88A2E;

text-transform:uppercase;

}

.trusted-top h2{

margin-top:15px;

font-size:52px;

font-family:"Cormorant Garamond",serif;

color:#101010;

}

.logo-slider{

overflow:hidden;

position:relative;

}

.logo-track{

display:flex;

align-items:center;

gap:90px;

width:max-content;

animation:scrollLogos 28s linear infinite;

}

.logo-track img{

height:75px;

width:auto;

opacity:1;


transition:.35s ease;

}


@keyframes scrollLogos{

from{

transform:translateX(0);

}

to{

transform:translateX(-50%);

}

}

.logo-slider::before,
.logo-slider::after{

content:"";

position:absolute;

top:0;

width:140px;

height:100%;

z-index:5;

pointer-events:none;

}





.hero-word-wrapper{
    display:inline-block;
    position:relative;
    overflow:hidden;
    height:1em;
    min-width:220px;
    vertical-align:bottom;
}

#hero-changing-word{
    display:inline-block;
    transform:translateY(0);
    opacity:1;
    transition:
        transform .55s cubic-bezier(.22,1,.36,1),
        opacity .55s ease;
    will-change:transform,opacity;
}

#hero-changing-word.exit{
    transform:translateY(-100%);
    opacity:0;
}

#hero-changing-word.enter{
    transform:translateY(100%);
    opacity:0;
}


@media (max-width:768px){

    .logo-slider{
        overflow:hidden;
    }

    .logo-track{
        gap:30px;
    }

    .logo-track img{
        height:42px;
        width:auto;
        flex-shrink:0;
    }

}

#services{
    background:#FAF8F3;
}


.mobile-login-btn{
    display:none;
}


/*=========================
    WHO WE'RE FOR
==========================*/

/*.who-for{
    padding:120px 0;
    background:#FAF8F3;
}

.who-for .container{
    max-width:1300px;
    margin:auto;
    padding:0 40px;
}

/* Heading 

.section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#EEF5F0;
    color:#0B5D3B;
    font-size:.8rem;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:3rem;
    font-weight:700;
    color:#111;
    margin-bottom:20px;
    line-height:1.15;
}

.section-heading p{
    font-size:1.1rem;
    color:#666;
    line-height:1.8;
}



.who-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}



.who-card{

    background:#fff;

    padding:35px;

    border-radius:28px;

    border:1px solid rgba(0,0,0,.06);

    transition:.4s ease;

    position:relative;

    overflow:hidden;

}

.who-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}



.who-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:0;
    height:4px;

    background:#0B5D3B;

    transition:.4s;

}

.who-card:hover::before{

    width:100%;

}

.card-icon{

    width:65px;
    height:65px;

    border-radius:18px;

    background:#EEF5F0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    margin-bottom:25px;

}

.who-card h3{

    font-size:1.45rem;

    color:#111;

    margin-bottom:15px;

}

.who-card p{

    color:#666;

    line-height:1.8;

}



.highlight-card{

    background:#0B5D3B;

    color:#fff;

}

.highlight-card h3{

    color:#fff;

}

.highlight-card p{

    color:rgba(255,255,255,.8);

}

.who-btn{

    display:inline-flex;

    align-items:center;

    margin-top:30px;

    padding:14px 28px;

    background:#fff;

    color:#0B5D3B;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.who-btn:hover{

    transform:translateX(6px);

}



@media(max-width:992px){

    .who-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .who-for{

        padding:80px 0;

    }

    .who-grid{

        grid-template-columns:1fr;

    }

    .section-heading h2{

        font-size:2.2rem;

    }

    .who-for .container{

        padding:0 20px;

    }

} */