:root{
    --navy:#002C6D;
    --orange:#F97316;
    --light:#f8fafc;
}
*
{
    margin: 0;
}
body::before{

    content:"";

    position:fixed;

    inset:0;

    background-image:

    linear-gradient(
    rgba(0,44,109,.03) 1px,
    transparent 1px),

    linear-gradient(
    90deg,
    rgba(0,44,109,.03) 1px,
    transparent 1px);

    background-size:60px 60px;

    pointer-events:none;

    z-index:-1;

}
















.topbar{

    background:var(--navy);
    color:white;

    padding:8px 20px;

}

.topbar-container{

    max-width:1400px;
    margin:auto;

}

.top-info{

    display:flex;
    justify-content:center;
    gap:40px;

    font-size:.9rem;
    font-weight:500;

}

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

.navbar{

    position:fixed;

    top:48px;
    left:0;

    width:100%;

    z-index:1000;

    /* padding:0 30px; */

    transition:.5s;
}

.nav-container{

    max-width:1400px;
    margin:auto;

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

    padding:18px 30px;

    border-radius:24px;

    backdrop-filter:blur(20px);

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

    border:
    1px solid rgba(255,255,255,.25);

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

    transition:.5s;
}

.logo img{

    height:70px;
    transition:.5s;

}

.nav-links{

    display:flex;
    gap:40px;

    list-style:none;

}

.nav-links a{

    text-decoration:none;
    color:var(--navy);

    font-weight:600;

    position:relative;

}

.nav-links a::after{

    content:"";

    position:absolute;

    width:0;
    height:3px;

    background:var(--orange);

    left:0;
    bottom:-8px;

    transition:.35s;

}

.nav-links a:hover::after{

    width:100%;

}

.nav-btn{

    text-decoration:none;

    background:var(--orange);

    color:white;

    font-weight:700;

    padding:15px 24px;

    border-radius:100px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.nav-btn:hover{

    transform:translateY(-4px);

}

/*==============================
SCROLLED NAVBAR
==============================*/

.navbar.scrolled{

    top:10px;

}

.navbar.scrolled .nav-container{

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

    backdrop-filter:
    blur(30px);

    padding:12px 24px;

}

.navbar.scrolled .logo img{

    height:55px;

}

.mobile-menu{

    position:fixed;

    inset:0;

    background:var(--navy);

    z-index:999;

    display:flex;

    flex-direction:column;

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

    transform:scale(0);

    transform-origin:top right;

    transition:
    .7s cubic-bezier(.22,1,.36,1);

}

.mobile-menu.active{

    transform:scale(1);

}

.mobile-menu ul{

    list-style:none;
    text-align:center;

}

.mobile-menu li{

    margin:24px 0;

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

}

.mobile-menu.active li{

    opacity:1;
    transform:none;

}

.mobile-menu li:nth-child(1){transition:.4s .15s;}
.mobile-menu li:nth-child(2){transition:.4s .25s;}
.mobile-menu li:nth-child(3){transition:.4s .35s;}
.mobile-menu li:nth-child(4){transition:.4s .45s;}
.mobile-menu li:nth-child(5){transition:.4s .55s;}
.mobile-menu li:nth-child(6){transition:.4s .65s;}

.mobile-menu a{

    color:white;

    text-decoration:none;

    font-size:2rem;

    font-weight:700;

}

.mobile-cta{

    margin-top:50px;

    background:var(--orange);

    padding:18px 30px;

    border-radius:100px;

}
.menu-toggle{

    display:none;

    width:50px;
    height:50px;

    background:none;
    border:none;

    cursor:pointer;

}

.menu-toggle span{

    display:block;

    width:28px;
    height:3px;

    background:var(--navy);

    margin:6px auto;

    transition:.35s;

}

.menu-toggle.active span:nth-child(1){

    transform:
    translateY(9px)
    rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:
    translateY(-9px)
    rotate(-45deg);

}
























.hero{
    min-height: 100vh;
    position:relative;
    top: 15vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}
html
{
    scroll-behavior: smooth;
}

.hero-bg-grid{
    position:absolute;
    /* inset:0; */



    background-size:70px 70px;

    mask-image:linear-gradient(to bottom,
    rgba(0,0,0,1),
    rgba(0,0,0,.2));
}

.hero-container{
    width:min(1400px,90%);
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;

    align-items:center;
}

.hero-badge{
    display:inline-flex;
    padding:12px 22px;
    border-radius:100px;

    background:rgba(249,115,22,.12);
    color:var(--orange);

    font-weight:700;
    margin-bottom:25px;
}

.hero h1{
    font-size:clamp(3rem,7vw,6rem);
    line-height:.95;
    color:var(--navy);
    margin-bottom:30px;
}

.hero h1 span{
    display:block;
    color:var(--orange);
}

.hero p{
    font-size:1.15rem;
    line-height:1.8;
    color:#555;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin:40px 0;
}

.btn-primary{
    background:var(--orange);
    color:white;
    padding:18px 34px;
    border-radius:100px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.btn-primary:hover{
    transform:translateY(-6px);
}

.btn-secondary{
    border:2px solid var(--navy);
    color:var(--navy);
    padding:18px 34px;
    border-radius:100px;
    text-decoration:none;
}

.hero-trust{
    display:flex;
    gap:50px;
}

.hero-trust strong{
    display:block;
    font-size:1.7rem;
    color:var(--navy);
}

.hero-trust span{
    color:#666;
}

.hero-right{
    height:750px;
    position:relative;
}

.floating-card{
    position:absolute;
    overflow:hidden;
    border-radius:30px;

    box-shadow:
    0 40px 60px rgba(0,0,0,.15);

    transition:.5s;
}

.floating-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card-1{
    width:320px;
    height:420px;
    top:0;
    left:80px;
}

.card-2{
    width:280px;
    height:220px;
    top:70px;
    right:0;
}

.card-3{
    width:300px;
    height:220px;
    bottom:80px;
    left:0;
}

.card-4{
    width:340px;
    height:280px;
    bottom:0;
    right:20px;
}




















.hero-divider{

    position:relative;
    height:180px;
    margin-top:-60px;

}

.divider-svg{

    width:100%;
    height:100%;

}

.divider-path{

    fill:#f8fafc;

}


















.blueprint-section{

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    width:4px;

    height:800px;

    pointer-events:none;

}

.blueprint-line{

    position:absolute;

    width:100%;
    height:100%;

    background:

    linear-gradient(
    to bottom,
    #F97316,
    #002C6D
    );

    transform-origin:top;

    transform:scaleY(0);

}
.blueprint-node{

    width:26px;
    height:26px;

    border-radius:50%;

    background:#fff;

    border:4px solid #F97316;

    position:absolute;

    left:50%;

    transform:
    translateX(-50%)
    scale(0);

    box-shadow:
    0 0 0 15px rgba(249,115,22,.08);

}

.node-1{ top:150px; }
.node-2{ top:400px; }
.node-3{ top:650px; }


























.services{

    padding:140px 0;
    position:relative;

}

.section-header{

    width:min(850px,90%);
    margin:auto;
    text-align:center;
    margin-bottom:80px;

}

.section-tag{

    display:inline-flex;
    padding:12px 22px;

    border-radius:100px;

    background:rgba(249,115,22,.1);

    color:#F97316;

    font-weight:700;

    margin-bottom:20px;

}

.section-header h2{

    font-size:clamp(3rem,5vw,5rem);

    line-height:1;

    color:#002C6D;

    margin-bottom:20px;

}

.section-header p{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.services-grid{

    width:min(1400px,90%);

    margin:auto;

    display:grid;

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

    gap:30px;

}

.service-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:500px;

    padding:35px;

    border-radius:32px;

    overflow:hidden;

    text-decoration:none;

    color:white;

    border:1px solid rgba(255,255,255,.08);

    background:#002C6D;

    transition:
    .6s cubic-bezier(.22,1,.36,1);

    isolation:isolate;

}

.service-card img{

    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:.15;

    transition:.6s;

    z-index:-3;

}

.service-card::after{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    180deg,
    rgba(0,44,109,.15),
    rgba(0,44,109,.92)
    );

    z-index:-2;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    border-radius:32px;

    padding:1px;

    background:
    linear-gradient(
    135deg,
    transparent,
    transparent,
    #F97316
    );

    -webkit-mask:
    linear-gradient(#fff 0 0)
    content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    opacity:0;

    transition:.5s;

}

.service-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 30px 70px rgba(0,0,0,.18);

}

.service-card:hover::before{

    opacity:1;

}

.service-card:hover img{

    opacity:.25;

    transform:scale(1.08);

}

.service-badge{

    display:inline-flex;

    align-self:flex-start;

    padding:10px 16px;

    border-radius:100px;

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

    backdrop-filter:blur(12px);

    font-size:.8rem;

    font-weight:700;

}

.service-icon{

    width:85px;
    height:85px;

    border-radius:24px;

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

    backdrop-filter:blur(10px);

    display:flex;

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

    font-size:2rem;

    margin:40px 0 25px;

    transition:.4s;

}

.service-card:hover .service-icon{

    background:#F97316;

    transform:
    rotate(8deg)
    scale(1.08);

}

.service-content h3{

    font-size:2rem;

    line-height:1.15;

    margin-bottom:15px;

}

.service-content p{

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

    line-height:1.8;

}

.service-footer{

    margin-top:40px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.service-footer span{

    font-weight:600;

}

.service-arrow{

    width:52px;
    height:52px;

    border-radius:50%;

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

    display:flex;

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

    transition:.4s;

}

.service-card:hover .service-arrow{

    background:#F97316;

    transform:translateX(5px);

}






























.why-us{

    padding:140px 0;

}

.why-us-container{

    width:min(1400px,90%);
    margin:auto;

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:80px;

    align-items:center;

}
.why-image{

    position:relative;

}

.why-image img{

    width:100%;
    height:750px;

    object-fit:cover;

    border-radius:35px;

}
.experience-card{

    position:absolute;

    bottom:40px;
    left:40px;

    max-width:300px;

    padding:30px;

    border-radius:25px;

    backdrop-filter:blur(20px);

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

    border:
    1px solid rgba(255,255,255,.2);

    color:white;

}

.experience-card span{

    color:#F97316;

    font-weight:700;

    letter-spacing:2px;

}
.why-content h2{

    font-size:
    clamp(3rem,5vw,5rem);

    color:#002C6D;

    line-height:1;

    margin:20px 0;

}

.why-content > p{

    color:#666;

    line-height:1.8;

    margin-bottom:50px;

}
.why-grid{

    display:grid;

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

    gap:25px;

}
.why-card{

    background:white;

    padding:28px;

    border-radius:24px;

    display:flex;

    gap:20px;

    align-items:flex-start;

    border:
    1px solid rgba(0,44,109,.08);

    transition:.45s;

}
.why-card:hover{

    transform:
    translateY(-8px);

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

}
.why-icon{

    min-width:65px;

    width:65px;
    height:65px;

    border-radius:18px;

    background:
    rgba(249,115,22,.12);

    color:#F97316;

    display:flex;

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

    font-size:1.3rem;

    transition:.4s;

}

.why-card:hover .why-icon{

    background:#F97316;

    color:white;

    transform:
    rotate(8deg);

}
.why-card{

    opacity:0;

    transform:
    translateY(60px);

}

.why-card.show{

    opacity:1;

    transform:none;

    transition:
    .8s cubic-bezier(.22,1,.36,1);

}

























.reviews{

    position:relative;

    padding:160px 0;

    background:#002C6D;

    overflow:hidden;

}
.reviews-glow{

    position:absolute;

    width:700px;
    height:700px;

    right:-250px;
    top:-250px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(249,115,22,.25),
        transparent 70%
    );

    filter:blur(70px);

}
.reviews-container{

    width:min(1400px,90%);
    margin:auto;

    position:relative;
    z-index:2;

}
.reviews-header{

    text-align:center;

    max-width:850px;

    margin:auto auto 70px;

}

.reviews-header h2{

    color:white;

    font-size:
    clamp(3rem,5vw,5rem);

    line-height:1;

    margin:20px 0;

}

.reviews-header p{

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

    line-height:1.8;

}
.trust-bar{

    display:grid;

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

    gap:25px;

    margin-bottom:50px;

}
.trust-item{

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

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(255,255,255,.1);

    border-radius:24px;

    padding:25px;

    display:flex;

    align-items:center;

    gap:20px;

}
.trust-icon{

    width:65px;
    height:65px;

    border-radius:18px;

    background:
    rgba(249,115,22,.15);

    display:flex;

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

    color:#F97316;

    font-size:1.2rem;

    font-weight:700;

}.trust-item strong{

    display:block;

    color:white;

    margin-bottom:5px;

}

.trust-item span{

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

}
.reviews-card{

    background:white;

    border-radius:35px;

    padding:40px;

    box-shadow:
    0 30px 80px
    rgba(0,0,0,.18);

}
.reviews-card-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:30px;

    margin-bottom:40px;

}

.reviews-card-top h3{

    color:#002C6D;

    font-size:2rem;

    margin-bottom:10px;

}

.reviews-card-top p{

    color:#666;

}
.review-cta{

    text-decoration:none;

    background:#F97316;

    color:white;

    padding:18px 30px;

    border-radius:100px;

    font-weight:700;

    transition:.4s;

}

.review-cta:hover{

    transform:
    translateY(-5px);

}
.elfsight-wrapper{

    overflow:hidden;

    border-radius:25px;

}
.reviews-card,
.trust-item{

    opacity:0;

    transform:
    translateY(80px);

}

.reviews-show{

    opacity:1;

    transform:none;

    transition:
    .9s cubic-bezier(.22,1,.36,1);

}



























.service-areas{

    position:relative;

    padding:140px 0;

}
.areas-container{

    width:min(1400px,90%);
    margin:auto;

}

.areas-header{

    max-width:850px;

    text-align:center;

    margin:auto auto 70px;

}

.areas-header h2{

    font-size:
    clamp(3rem,5vw,5rem);

    color:#002C6D;

    line-height:1.05;

    margin:20px 0;

}

.areas-header p{

    color:#666;

    line-height:1.8;

}
.areas-layout{

    display:grid;

    grid-template-columns:
    1.4fr .8fr;

    gap:40px;

    align-items:start;

}
.map-frame{

    position:relative;

    height:600px;

    overflow:hidden;

    border-radius:35px;

    background:white;

    border:
    1px solid rgba(0,44,109,.08);

    box-shadow:
    0 25px 60px rgba(0,44,109,.08);

}
iframe{
    margin-top: -60px;
    width:100%;
    height:110%;

    border:none;

    transition:.7s;

}

.map-frame:hover iframe{

    transform:scale(1.02);

}
.areas-sidebar{

    position:sticky;

    top:120px;

}
.coverage-card{

    background:white;

    border-radius:28px;

    padding:35px;

    margin-bottom:25px;

    border:
    1px solid rgba(0,44,109,.08);

    box-shadow:
    0 20px 40px rgba(0,44,109,.06);

}

.coverage-card span{

    color:#F97316;

    font-weight:700;

    letter-spacing:2px;

}

.coverage-card h3{

    color:#002C6D;

    font-size:2rem;

    margin:12px 0;

}

.coverage-card p{

    color:#666;

    line-height:1.8;

}
.cities-grid{

    display:grid;

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

    gap:15px;

}
.city-btn{

    padding:18px;

    border:none;

    cursor:pointer;

    border-radius:18px;

    background:white;

    color:#002C6D;

    font-weight:600;

    border:
    1px solid rgba(0,44,109,.08);

    transition:.35s;

}
.city-btn:hover{

    background:#002C6D;

    color:white;

    transform:
    translateY(-4px);

}
.city-btn.active{

    background:#F97316;

    color:white;

}
.service-areas::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    left:-200px;
    top:100px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(249,115,22,.08),
        transparent
    );

    filter:blur(60px);

}



























.footer{

    position:relative;

    background:#001D4A;

    color:white;

    overflow:hidden;

}
.footer::before{

    content:"";

    position:absolute;

    width:600px;
    height:600px;

    right:-250px;
    top:-250px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(249,115,22,.18),
    transparent 70%
    );

    filter:blur(80px);

}
.footer-top{

    width:min(1400px,90%);

    margin:auto;

    padding:100px 0 60px;

    display:grid;

    grid-template-columns:
    1.4fr
    .8fr
    .8fr
    .8fr;

    gap:60px;

    position:relative;

    z-index:2;

}
.footer-brand img{

    max-width:220px;

    margin-bottom:25px;

}

.footer-brand p{

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

    line-height:1.8;

    margin-bottom:30px;

}
.footer-badges{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

}

.footer-badges span{

    padding:10px 16px;

    border-radius:100px;

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

    border:
    1px solid rgba(255,255,255,.1);

    font-size:.85rem;

}
.footer-column h4{

    margin-bottom:25px;

    font-size:1.2rem;

    color:white;

}
.footer-column ul{

    list-style:none;

    padding:0;

}

.footer-column li{

    margin-bottom:15px;

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

}

.footer-column a{

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

    text-decoration:none;

    transition:.3s;

}
.footer-column a:hover{

    color:#F97316;

    padding-left:5px;

}
.footer-socials{

    display:flex;

    gap:15px;

    margin-bottom:35px;

}
.footer-socials a{

    width:55px;
    height:55px;

    border-radius:18px;

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

    display:flex;

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

    font-size:1.2rem;

    transition:.4s;

}
.footer-socials a:hover{

    background:#F97316;

    transform:
    translateY(-5px);

}
.footer-cta{

    padding:25px;

    border-radius:24px;

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

    border:
    1px solid rgba(255,255,255,.08);

}

.footer-cta h5{

    margin-bottom:15px;

}
.footer-cta a{

    display:inline-flex;

    padding:14px 24px;

    background:#F97316;

    color:white;

    border-radius:100px;

    font-weight:600;

}
.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,.08);

    width:min(1400px,90%);

    margin:auto;

    padding:30px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}
.footer-bottom p{

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

}
.developer-link{

    color:#F97316;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.developer-link:hover{

    opacity:.8;

}




















@media (max-width: 1100px){
     .footer-top{

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

    }
     .areas-layout{

        grid-template-columns:1fr;

    }

    .areas-sidebar{

        position:relative;
        top:auto;

    }


       .why-us-container{

        grid-template-columns:1fr;

    }

    .why-image img{

        height:500px;

    }

    .services-grid{

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

}
 .services-grid{

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

    }
       .hero{
        padding:140px 0 80px;
        min-height:auto;
    }

    .hero-container{
        grid-template-columns:1fr;
        gap:60px;
    }

    .hero-left{
        text-align:center;
        order:1;
    }

    .hero-left p{
        margin:auto;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-trust{
        justify-content:center;
        flex-wrap:wrap;
        gap:30px;
    }

    .hero-right{
        order:2;
        height:650px;
        max-width:700px;
        margin:auto;
        width:100%;
    }



}
@media(max-width:992px){

    .trust-bar{

        grid-template-columns:1fr;

    }

    .reviews-card-top{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media (max-width: 768px){

    .footer-top{

        grid-template-columns:1fr;

        gap:40px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }
     .map-frame{

        height:450px;

    }

    .cities-grid{

        grid-template-columns:1fr;

    }
       .why-grid{

        grid-template-columns:1fr;

    }

    .why-content h2{

        font-size:2.5rem;

    }

    .experience-card{

        left:20px;
        right:20px;

        max-width:none;

    }
    .service-icon,.service-arrow{

    background:#F97316;
}
     .services{

        padding:100px 0;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        min-height:420px;

    }

    .service-content h3{

        font-size:1.7rem;

    }

    
     .nav-links,
    .nav-btn{

        display:none;

    }

    .menu-toggle{

        display:block;

    }
     .top-info{

        gap:20px;
        font-size:.75rem;

        flex-wrap:wrap;

    }

    .navbar{
        left: 2.5%;
        top:60px;
        width: 95%;

    }


     .hero{
        padding-top:120px;
        overflow:hidden;
    }

    .hero-container{
        width:92%;
        gap:40px;
    }

    .hero-badge{
        font-size:.9rem;
        padding:10px 18px;
    }

    .hero h1{
        font-size:clamp(2.6rem,10vw,4rem);
    }

    .hero p{
        font-size:1rem;
        line-height:1.7;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }


    .hero-trust{
        gap:20px;
    }

    .hero-trust div{
        min-width:100px;
    }

    .hero-right{
        height:500px;
    }

    .card-1{
        width:220px;
        height:280px;
        left:50%;
        transform:translateX(-50%);
    }

    .card-2{
        width:180px;
        height:140px;
        top:40px;
        right:0;
    }

    .card-3{
        width:180px;
        height:140px;
        bottom:50px;
        left:0;
    }

    .card-4{
        width:220px;
        height:180px;
        right:20px;
        bottom:0;
    }

    

}
@media (max-width: 480px){

    .hero{
        padding-top:110px;
        padding-bottom:60px;
    }

    .hero h1{
        font-size:2.3rem;
        line-height:1;
    }

    .hero p{
        font-size:.95rem;
    }

    .hero-trust{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:20px;
    }

    .hero-trust div{
        text-align:center;
    }

    .hero-right{
        height:380px;
    }

    .floating-card{
        border-radius:20px;
    }

    .card-1{
        width:170px;
        height:220px;
    }

    .card-2{
        width:130px;
        height:100px;
        top:20px;
    }

    .card-3{
        width:130px;
        height:100px;
        bottom:40px;
    }

    .card-4{
        width:170px;
        height:130px;
    }

}