@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500&display=swap');


*{

margin:0;
padding:0;
box-sizing:border-box;

}


body{

overflow-x:hidden;

}

















/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

height:90px;

padding:0 70px;

display:flex;

justify-content:space-between;

align-items:center;

z-index:9999;

transition:.45s ease;

background:transparent;

}


/* SCROLLED */

.navbar.scrolled{

background:white;

box-shadow:
0 10px 30px rgba(0,0,0,.06);

}



/* ========================= */
/* LOGO */
/* ========================= */

.nav-logo{

display:flex;

align-items:center;

gap:14px;

}


.logo-box{

width:48px;

height:48px;

border-radius:14px;

background:#0F172A;

display:flex;

justify-content:center;

align-items:center;

font-size:22px;

color:white;

}


.nav-logo h2{

font-family:
"Cormorant Garamond",
serif;

font-size:42px;

font-weight:700;

color:white;

transition:.4s;

}



/* ========================= */
/* RIGHT SIDE */
/* ========================= */

.nav-right{

display:flex;

align-items:center;

gap:28px;

}



/* LINKS */

.nav-links{

display:flex;

align-items:center;

gap:38px;

}


.nav-links a{

text-decoration:none;

font-family:Inter;

font-size:15px;

color:
rgba(255,255,255,.82);

position:relative;

transition:.4s;

}


.nav-links a:hover{

color:white;

}


.nav-links a.active::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:100%;

height:2px;

border-radius:10px;

background:
linear-gradient(
90deg,
#7BA8FF,
#DCA6FF
);

}



/* ========================= */
/* BUTTON */
/* ========================= */

.nav-btn{

display: flex;

align-items: center;

gap: 3px;

height:52px;

padding:0 24px;

border-radius:60px;

border:none;

background:#0F172A;

font-family:Inter;

font-size:15px;

font-weight:500;

color:white;

cursor:pointer;

transition:.4s;

}


.nav-btn:hover{

transform:translateY(-3px);

}



/* ========================= */
/* MOBILE MENU ICON */
/* ========================= */

.menu-btn{

display:none;

width:48px;

height:48px;

border-radius:14px;

background:
rgba(255,255,255,.12);

backdrop-filter:blur(10px);

justify-content:center;

align-items:center;

font-size:22px;

color:white;

cursor:pointer;

}



/* ========================= */
/* SCROLLED COLORS */
/* ========================= */

.navbar.scrolled .nav-logo h2{

color:#111827;

}


.navbar.scrolled .nav-links a{

color:#4B5563;

}


.navbar.scrolled .nav-links a:hover{

color:#111827;

}


.navbar.scrolled .menu-btn{

background:#F3F4F6;

color:#111827;

}



/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){

.navbar{

padding:0 18px;

height:78px;

}


/* HIDE LINKS */

.nav-links{

display:none;

}


/* SHOW MENU ICON */

.menu-btn{

display:flex;

}


/* SPACING */

.nav-right{

gap:14px;

}


/* LOGO */

.nav-logo h2{

font-size:30px;

}


.logo-box{

width:42px;

height:42px;

font-size:18px;

}


/* BUTTON */

.nav-btn{

height:46px;

padding:0 18px;

font-size:13px;

}

}





.nav-logo{

display:flex;

align-items:center;

height:100%;

}

.navbar-logo{

height:90px;
width:auto;

display:block;

object-fit:contain;

filter:
drop-shadow(0 8px 20px rgba(110,168,255,.15));

transition:
transform .4s ease,
filter .4s ease;

}

.navbar-logo:hover{

transform:scale(1.04);

filter:
drop-shadow(0 12px 30px rgba(184,146,255,.25));

}








/* ========================= */
/* PROJECT DROPDOWN */
/* ========================= */
/* ========================= */
/* MOBILE DROPDOWN */
/* ========================= */

.mobile-dropdown{

    position:absolute;

    top:90px;

    right:15px;

    width:min(85vw,320px);

    background:white;

    border-radius:24px;

    padding:18px;

    display:flex;

    flex-direction:column;

    gap:4px;

    box-shadow:
    0 20px 50px rgba(15,23,42,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(-15px);

    transition:.35s ease;

    z-index:99999;

}

.mobile-dropdown.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* MAIN LINKS */

.mobile-dropdown > a{

    text-decoration:none;

    color:#111827;

    font-size:16px;

    font-weight:500;

    padding:14px 16px;

    border-radius:14px;

    transition:.3s;

}

.mobile-dropdown > a:hover{

    background:
    linear-gradient(
    90deg,
    rgba(110,168,255,.12),
    rgba(184,146,255,.12)
    );

}

/* PROJECTS */

.mobile-projects{

    width:100%;

}

.mobile-project-toggle{

    width:100%;

    border:none;

    background:none;

    outline:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 16px;

    cursor:pointer;

    border-radius:14px;

    color:#111827;

    font-size:16px;

    font-weight:500;

    transition:.3s;

}

.mobile-project-toggle:hover{

    background:
    linear-gradient(
    90deg,
    rgba(110,168,255,.12),
    rgba(184,146,255,.12)
    );

}

.project-arrow{

    font-size:20px;

    transition:.3s;

}

.project-arrow.rotate{

    transform:rotate(180deg);

}

.mobile-project-menu{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    display:flex;

    flex-direction:column;

    margin-left:12px;

}

.mobile-project-menu.show{

    max-height:250px;

}

.mobile-project-menu a{

    text-decoration:none;

    color:#6B7280;

    font-size:14px;

    padding:10px 16px;

    border-left:2px solid rgba(110,168,255,.25);

    transition:.3s;

}

.mobile-project-menu a:hover{

    color:#111827;

    border-left-color:#6EA8FF;

}

/* MOBILE */

@media(max-width:991px){

    .nav-links{

        display:none;

    }

    .nav-btn{

        display:none;

    }

    .menu-btn{

        display:flex;

        width:46px;

        height:46px;

        justify-content:center;

        align-items:center;

        font-size:24px;

        cursor:pointer;

    }

}

/* DESKTOP */

@media(min-width:992px){

    .mobile-dropdown{

        display:none;

    }

    .menu-btn{

        display:none;

    }

}





.project-dropdown{
    position:relative;
}

.project-menu{

    position:absolute;

    top:100%;

    left:50%;

    transform:translateX(-50%);

    min-width:220px;

    background:#fff;

    border-radius:16px;

    padding:10px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    display:none;

    flex-direction:column;

    z-index:999999;

}

.project-menu a{

    display:block;

    text-decoration:none;

    color:#374151;

    padding:12px 16px;

    border-radius:10px;

}

.project-menu a:hover{

    background:#f3f4f6;

}

.project-dropdown:hover .project-menu{

    display:flex;

}


























.about-hero{

position:relative;

width:100%;

height:100vh;

overflow:hidden;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

background:url("../assests/blog-home.png");

background-size:cover;

background-position:center;

}

/* DARK OVERLAY */

.about-overlay{

position:absolute;

inset:0;

background:

linear-gradient(
180deg,
rgba(5,8,20,.45),
rgba(5,8,20,.65)
);

z-index:1;

}

/* CONTENT */

.about-inner{

position:relative;

z-index:3;

max-width:1200px;

padding:0 30px;

}

/* PILL */

.about-pill{

display:inline-block;

padding:14px 30px;

border:1px solid rgba(255,255,255,.18);

backdrop-filter:blur(15px);

border-radius:999px;

color:white;

font-family:Inter;

font-size:13px;

letter-spacing:3px;

margin-bottom:40px;

}

/* HEADING */

.hero-title{

font-family:"Cormorant Garamond",serif;

font-size:110px;

font-weight:600;

line-height:.95;

color:white;

min-height:240px;

}

/* TEXT */

.hero-text{

max-width:900px;

margin:auto;

font-family:Inter;

font-size:22px;

line-height:1.8;

color:rgba(255,255,255,.85);

margin-top:30px;

}

/* BUTTONS */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:50px;

}

.btn-primary{

padding:22px 42px;

border-radius:999px;

background:white;

color:#111827;

text-decoration:none;

font-family:Inter;

font-weight:600;

}

.btn-secondary{

padding:22px 42px;

border-radius:999px;

border:1px solid rgba(255,255,255,.2);

backdrop-filter:blur(20px);

background:rgba(255,255,255,.08);

color:white;

text-decoration:none;

font-family:Inter;

font-weight:600;

}

/* PARTICLES */

.floating-particles span{

position:absolute;

width:8px;

height:8px;

border-radius:50%;

background:white;

opacity:.4;

animation:float 8s infinite ease-in-out;

z-index:2;

}

.floating-particles span:nth-child(1){

top:15%;

left:10%;

}

.floating-particles span:nth-child(2){

top:25%;

right:20%;

}

.floating-particles span:nth-child(3){

top:70%;

left:18%;

}

.floating-particles span:nth-child(4){

top:80%;

right:12%;

}

.floating-particles span:nth-child(5){

top:45%;

left:70%;

}

.floating-particles span:nth-child(6){

top:20%;

left:50%;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-25px);

}

}

/* FOG */

.bottom-fog{

position:absolute;

left:0;

right:0;

bottom:0;

height:220px;

background:

linear-gradient(
to top,
rgba(255,255,255,.95),
transparent
);

z-index:2;

}

/* RESPONSIVE */

@media(max-width:991px){

.hero-title{

font-size:60px;

min-height:auto;

}

.hero-text{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

}





















.blog-statement{

width:100%;

padding:80px 6%;

background:#ffffff;

overflow:hidden;

}

.statement-container{

max-width:1400px;

margin:auto;

display:grid;

grid-template-columns:
220px
1fr
260px;

grid-template-rows:
140px
auto
140px;

gap:20px;

align-items:center;

}

/* ====================== */
/* TOP LEFT TEXT */
/* ====================== */

.statement-top-text{

grid-column:1;
grid-row:1;

}

.statement-top-text p{

font-family:Inter,sans-serif;

font-size:13px;

line-height:1.8;

color:#64748b;

}

/* ====================== */
/* TOP RIGHT IMAGE */
/* ====================== */

.statement-top-image{

grid-column:3;
grid-row:1;

height:160px;

border-radius:24px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

}

.statement-top-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.8s ease;

}

/* ====================== */
/* CENTER HEADING */
/* ====================== */

.statement-heading{

grid-column:2;
grid-row:1 / span 3;

display:flex;

justify-content:center;

align-items:center;

}

.statement-heading h2{

font-family:
"Cormorant Garamond",
serif;

font-size:48px;

line-height:.95;

font-weight:700;

color:#111827;

text-align:center;

letter-spacing:-1px;

max-width:650px;

margin:auto;

}

.statement-heading span{

display:block;

background:
linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/* ====================== */
/* BOTTOM LEFT IMAGE */
/* ====================== */

.statement-bottom-image{

grid-column:1;
grid-row:3;

height:160px;

border-radius:24px;

overflow:hidden;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

}

.statement-bottom-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.8s ease;

}

/* ====================== */
/* BOTTOM RIGHT TEXT */
/* ====================== */

.statement-bottom-text{

grid-column:3;
grid-row:3;

}

.statement-bottom-text p{

font-family:Inter,sans-serif;

font-size:14px;

line-height:1.8;

color:#64748b;

}

/* ====================== */
/* IMAGE HOVER */
/* ====================== */

.statement-top-image:hover img,
.statement-bottom-image:hover img{

transform:scale(1.08);

}

/* ====================== */
/* TABLET */
/* ====================== */

@media(max-width:1200px){

.statement-container{

grid-template-columns:
180px
1fr
180px;

}

.statement-heading h2{

font-size:42px;

}

.statement-top-image,
.statement-bottom-image{

height:140px;

}

}

/* ====================== */
/* MOBILE */
/* ====================== */

@media(max-width:991px){

.blog-statement{

padding:60px 6%;

}

.statement-container{

display:flex;

flex-direction:column;

gap:20px;

}

.statement-top-text{

order:1;

text-align:center;

max-width:600px;

}

.statement-heading{

order:2;

}

.statement-top-image{

order:3;

width:100%;

height:220px;

}

.statement-bottom-image{

order:4;

width:100%;

height:220px;

}

.statement-bottom-text{

order:5;

text-align:center;

max-width:600px;

}

.statement-heading h2{

font-size:40px;

line-height:1;

}

}

/* ====================== */
/* MOBILE SMALL */
/* ====================== */

@media(max-width:576px){

.blog-statement{

padding:50px 5%;

}

.statement-heading h2{

font-size:32px;

}

.statement-top-text p,
.statement-bottom-text p{

font-size:13px;

}

.statement-top-image,
.statement-bottom-image{

height:180px;

}

}


































.blog-section{

width:100%;

padding:40px 6%;

background:
linear-gradient(
180deg,
#ffffff 0%,
#f7fafc 40%,
#edf3f8 100%
);

overflow:hidden;

}

/* ======================= */
/* HEADING */
/* ======================= */

.blog-heading{

text-align:center;

max-width:900px;

margin:0 auto 80px;

}

.blog-heading span{

display:inline-block;

font-size:12px;

font-weight:700;

letter-spacing:5px;

text-transform:uppercase;

color:#6EA8FF;

margin-bottom:15px;

}

.blog-heading h2{

font-family:
"Cormorant Garamond",
serif;

font-size:58px;

line-height:.95;

font-weight:700;

color:#111827;

}

/* ======================= */
/* GRID */
/* ======================= */

.blog-grid{

max-width:1500px;

margin:auto;

display:grid;

grid-template-columns:
repeat(3,1fr);

gap:35px;

}

/* ======================= */
/* CARD */
/* ======================= */

.blog-card{

background:
rgba(255,255,255,.8);

backdrop-filter:
blur(20px);

border-radius:30px;

overflow:hidden;

border:1px solid
rgba(110,168,255,.08);

box-shadow:
0 15px 40px rgba(15,23,42,.06);

transition:
transform .45s ease,
box-shadow .45s ease;

cursor:pointer;

position:relative;

}

.blog-card::before{

content:"";

position:absolute;

left:0;

top:0;

width:100%;

height:4px;

background:
linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

transform:scaleX(0);

transform-origin:left;

transition:.5s ease;

}

.blog-card:hover::before{

transform:scaleX(1);

}

.blog-card:hover{

transform:
translateY(-12px);

box-shadow:
0 30px 80px rgba(15,23,42,.12);

}

/* ======================= */
/* IMAGE */
/* ======================= */

.blog-image{

height:220px;

overflow:hidden;

position:relative;

}

.blog-image::after{

content:"";

position:absolute;

inset:0;

background:
linear-gradient(
180deg,
transparent,
rgba(0,0,0,.08)
);

}

.blog-image img{

width:100%;

height:100%;

object-fit:cover;

transition:
transform 1s ease;

}

.blog-card:hover img{

transform:scale(1.1);

}

/* ======================= */
/* CONTENT */
/* ======================= */

.blog-content{

padding:22px;

}

.blog-category{

display:inline-flex;

align-items:center;

gap:8px;

padding:8px 14px;

border-radius:999px;

background:
rgba(110,168,255,.10);

color:#6EA8FF;

font-size:11px;

font-weight:700;

letter-spacing:1px;

text-transform:uppercase;

margin-bottom:14px;

}

.blog-content h3{

font-family:
"Cormorant Garamond",
serif;

font-size:26px;

line-height:1.2;

font-weight:700;

color:#111827;

margin-bottom:12px;

}

.blog-content p{

font-size:14px;

line-height:1.8;

color:#64748b;

margin-bottom:18px;

display:-webkit-box;

-webkit-line-clamp:2;

-webkit-box-orient:vertical;

overflow:hidden;

}

/* ======================= */
/* FOOTER */
/* ======================= */

.blog-footer{

display:flex;

justify-content:space-between;

align-items:center;

padding-top:15px;

border-top:
1px solid rgba(110,168,255,.08);

}

.blog-read{

font-size:13px;

font-weight:700;

letter-spacing:.5px;

color:#111827;

}

.blog-arrow{

width:40px;

height:40px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:
linear-gradient(
135deg,
#6EA8FF,
#B892FF
);

color:white;

font-size:18px;

transition:.4s ease;

}

.blog-card:hover .blog-arrow{

transform:
rotate(45deg)
scale(1.05);

}

/* ======================= */
/* TABLET */
/* ======================= */

@media(max-width:991px){

.blog-section{

padding:100px 6%;

}

.blog-grid{

grid-template-columns:
1fr 1fr;

gap:25px;

}

.blog-heading h2{

font-size:52px;

}

.blog-image{

height:200px;

}

}

/* ======================= */
/* MOBILE */
/* ======================= */

@media(max-width:576px){

.blog-grid{

grid-template-columns:1fr;

}

.blog-heading h2{

font-size:40px;

}

.blog-image{

height:220px;

}

.blog-content{

padding:20px;

}

.blog-content h3{

font-size:24px;

}

}



.gradient-class-text{
    font-size:58px;
    background: linear-gradient(90deg, #6EA8FF, #B892FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


























.contact-section{
width:85%;
margin:auto;
background:#ffffff;
margin-top:80px;
padding:80px 70px;

display:flex;

justify-content:center;

align-items:center;

}


.contact-container{

width:100%;

max-width:1400px;

display:flex;

gap:55px;

align-items:flex-start;

}


/* ========================= */
/* CONTACT STATIC (NO FORM) */
/* ========================= */

.contact-static{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:24px;
}

.static-hero{
    text-align:left;
}

.static-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(110,168,255,.10);
    color:#2563EB;
    font-family:Inter;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:14px;
}

.static-hero h3{
    font-family:"Cormorant Garamond",serif;
    font-size:34px;
    line-height:1.05;
    color:#111827;
    font-weight:700;
    margin-bottom:10px;
}

.static-hero p{
    font-family:Inter;
    font-size:14px;
    line-height:1.8;
    color:#64748B;
    max-width:520px;
}

.static-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.static-action{
    flex:1;
    min-width:210px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 16px;
    border-radius:18px;
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    text-decoration:none;
    color:#111827;
    font-family:Inter;
    font-size:14px;
    font-weight:600;
    transition:.35s;
}

.static-action:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(59,130,246,.12);
    border-color:rgba(59,130,246,.30);
}

.static-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.static-card{
    border-radius:22px;
    border:1px solid #E5E7EB;
    background:linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    padding:18px 16px;
    box-shadow:0 10px 25px rgba(15,23,42,.04);
}

.card-icon{
    width:44px;
    height:44px;
    border-radius:16px;
    background:#F1F5F9;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3B82F6;
    margin-bottom:10px;
    font-size:18px;
}

.static-card h4{
    font-family:Inter;
    font-size:14px;
    font-weight:700;
    color:#111827;
    margin-bottom:6px;
}

.static-card p{
    font-family:Inter;
    font-size:13px;
    line-height:1.7;
    color:#64748B;
}

.static-cta{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cta-link{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    border-radius:16px;
    border:1px solid #E5E7EB;
    background:#FFFFFF;
    text-decoration:none;
    font-family:Inter;
    font-size:14px;
    font-weight:600;
    color:#111827;
    transition:.35s;
}

.cta-link:hover{
    transform:translateY(-2px);
    border-color:rgba(59,130,246,.30);
    box-shadow:0 18px 35px rgba(59,130,246,.12);
}


/* ensure gradient span in this section looks good */
.contact-static .gradient{
    background:linear-gradient(90deg,#5E8DFF 0%, #B896FF 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){
    .static-actions{ 
        flex-direction:column;
    }
    .static-grid{ 
        grid-template-columns:1fr;
    }
    .static-hero h3{ 
        font-size:30px;
        text-align:left;
    }
}





/* ========================= */
/* LEFT */
/* ========================= */

.contact-left{

width:38%;

}


.contact-text{

font-family:Inter;

font-size:18px;

line-height:1.7;

color:#64748B;

margin-bottom:26px;

max-width:520px;

}



/* MAP */

.map-box{

width:100%;

height:250px;

border-radius:22px;

background:#F3F4F6;

border:
1px solid #E5E7EB;

margin-bottom:30px;

}



/* INFO */

.contact-info{

display:flex;

flex-direction:column;

gap:20px;

}


.info-box{

display:flex;

align-items:flex-start;

gap:15px;

}


.info-icon{

min-width:44px;

height:44px;

border-radius:14px;

background:#F1F5F9;

display:flex;

justify-content:center;

align-items:center;

font-size:18px;

color:#3B82F6;

}


.info-content h4{

font-family:Inter;

font-size:15px;

font-weight:600;

color:#111827;

margin-bottom:4px;

}


.info-content span{

font-family:Inter;

font-size:16px;

line-height:1.6;

color:#64748B;

}



/* ========================= */
/* RIGHT */
/* ========================= */

.contact-right{

width:62%;

background:white;

border:
1px solid #E5E7EB;

border-radius:28px;

padding:40px;

}


.form-title{

font-family:
"Cormorant Garamond",
serif;

font-size:35px;

font-weight:700;

color:#111827;

margin-bottom:28px;

}



/* FORM */

.contact-form{

display:flex;

flex-direction:column;

gap:18px;

}


.form-row{

display:flex;

gap:18px;

}


.input-group{

width:100%;

display:flex;

flex-direction:column;

}


.input-group label{

font-family:Inter;

font-size:14px;

font-weight:500;

color:#111827;

margin-bottom:10px;

}



/* INPUTS */

.contact-form input,
.contact-form select,
.contact-form textarea{

width:100%;

height:50px;

padding:0 20px;

border-radius:16px;

border:
1px solid #E5E7EB;

background:#FAFAFA;

font-family:Inter;

font-size:12px;

color:#111827;

outline:none;

transition:.35s;

}


.contact-form textarea{

height:140px;

padding-top:18px;

resize:none;

}


.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

border-color:#3B82F6;

background:white;

box-shadow:
0 0 0 4px rgba(59,130,246,.08);

}



/* BUTTON */

.contact-btn{

width:100%;

height:62px;

border:none;

border-radius:16px;

background:
linear-gradient(
90deg,
#3B82F6,
#3567B7
);

font-family:Inter;

font-size:17px;

font-weight:600;

color:white;

display:flex;

justify-content:center;

align-items:center;

gap:10px;

cursor:pointer;

transition:.4s;

margin-top:6px;

}


.contact-btn:hover{

transform:translateY(-2px);

box-shadow:
0 16px 35px rgba(59,130,246,.18);

}



/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){

.contact-section{

padding:70px 0px;

}


.contact-container{

flex-direction:column;

gap:40px;

}


.contact-left,
.contact-right{

width:100%;

}


.form-row{

flex-direction:column;

gap:18px;

}


.contact-right{

padding:24px;

}


.form-title{

font-size:38px;

}


.contact-text{

font-size:15px;

}


.map-box{

height:220px;

}


.contact-form input,
.contact-form select,
.contact-form textarea{

height:56px;

font-size:14px;

}


.contact-form textarea{

height:120px;

}


.contact-btn{

height:58px;

font-size:15px;

}

}





/* ========================= */
/* LUXURY CUSTOM SELECT */
/* ========================= */

.custom-select{

    position:relative;

    width:100%;

}

.select-trigger{

    width:100%;

    height:58px;

    border:none;

    outline:none;

    cursor:pointer;

    padding:0 20px;

    border-radius:18px;

    background:
    linear-gradient(
    180deg,
    #FFFFFF 0%,
    #F8FAFC 100%
    );

    border:1px solid #E5E7EB;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-family:Inter;

    font-size:15px;

    font-weight:500;

    color:#111827;

    transition:.35s ease;

    box-shadow:
    0 4px 15px rgba(15,23,42,.04);

}

.select-trigger:hover{

    border-color:#D7E3F0;

    transform:translateY(-1px);

}

.select-trigger i{

    color:#64748B;

    transition:.3s;

}

.custom-select.active .select-trigger{

    border-color:#3B82F6;

    box-shadow:
    0 0 0 4px rgba(59,130,246,.08);

}

.custom-select.active .select-trigger i{

    transform:rotate(180deg);

}

/* OPTIONS */

.select-options{

    position:absolute;

    top:68px;

    left:0;

    width:100%;

    background:white;

    border-radius:20px;

    border:1px solid #E5E7EB;

    box-shadow:
    0 20px 40px rgba(15,23,42,.08);

    overflow:hidden;

    opacity:0;

    visibility:hidden;

    transform:translateY(10px);

    transition:.3s ease;

    z-index:999;

}

.custom-select.active .select-options{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.option{

    padding:15px 20px;

    cursor:pointer;

    font-family:Inter;

    font-size:14px;

    font-weight:500;

    color:#374151;

    transition:.25s;

}

.option:hover{

    background:
    linear-gradient(
    90deg,
    rgba(110,168,255,.10),
    rgba(184,146,255,.10)
    );

    color:#111827;

    padding-left:25px;

}

.option:not(:last-child){

    border-bottom:
    1px solid rgba(229,231,235,.6);

}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:768px){

    .select-trigger{

        height:52px;

        font-size:14px;

        border-radius:16px;

    }

    .select-options{

        top:60px;

        border-radius:16px;

    }

    .option{

        padding:14px 18px;

        font-size:14px;

    }

}












































  
.footer{

    position:relative;

    overflow:hidden;

    min-height:60vh;

    padding:50px 8% 20px;

    background:
    linear-gradient(
    180deg,
    #ffffff 0%,
    #f8fbff 40%,
    #eef4f8 100%
    );

}

/* WATERMARK */

.footer-watermark{

    position:absolute;

    top:50%;

    left:50%;

    transform:
    translate(-50%,-50%);

    font-size:16rem;

    font-weight:700;

    letter-spacing:12px;

    color:
    rgba(17,24,39,.03);

    pointer-events:none;

    white-space:nowrap;

}

/* MOVING BEAM */

.footer-beam{

    position:absolute;

    top:0;

    left:-50%;

    width:35%;

    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(110,168,255,.08),
    transparent
    );

    animation:
    beamMove 12s linear infinite;

}

@keyframes beamMove{

    from{

        left:-50%;

    }

    to{

        left:150%;

    }

}

/* STARS */

.footer-stars{

    position:absolute;

    inset:0;

    pointer-events:none;

}

.footer-stars span{

    position:absolute;

    width:6px;

    height:6px;

    border-radius:50%;

    background:white;

    box-shadow:
    0 0 10px white,
    0 0 25px #6EA8FF;

    animation:
    twinkle 4s ease-in-out infinite;

}

.footer-stars span:nth-child(1){top:10%;left:8%;}
.footer-stars span:nth-child(2){top:18%;left:18%;}
.footer-stars span:nth-child(3){top:12%;left:75%;}
.footer-stars span:nth-child(4){top:22%;left:90%;}
.footer-stars span:nth-child(5){top:70%;left:10%;}
.footer-stars span:nth-child(6){top:80%;left:25%;}
.footer-stars span:nth-child(7){top:75%;left:80%;}
.footer-stars span:nth-child(8){top:60%;left:92%;}

@keyframes twinkle{

    0%,100%{

        opacity:.3;
        transform:scale(1);

    }

    50%{

        opacity:1;
        transform:scale(1.8);

    }

}

/* CONTAINER */

.footer-container{

    position:relative;

    z-index:2;

}

/* TOP */

.footer-top{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:30px;

}

.footer-top img{

    width:240px;

}

.footer-side{

    font-size:11px;

    letter-spacing:4px;

    color:#94A3B8;

    animation:
    floatText 4s ease-in-out infinite;

}

.right{

    animation-delay:.8s;

}

@keyframes floatText{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-8px);

    }

}

/* HEADING */

.footer-heading{

    text-align:center;

    margin-top:10px;

    font-size:
    clamp(2rem,3vw,3.2rem);

    font-family:
    "Cormorant Garamond",
    serif;

    color:#111827;

}

.footer-heading span{

    background:
    linear-gradient(
    135deg,
    #6EA8FF,
    #B892FF
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.footer-subtitle{

    text-align:center;

    max-width:650px;

    margin:10px auto 35px;

    color:#64748B;

    line-height:1.8;

}

/* LINKS */

.footer-links{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:40px;

}

.footer-col h4{

    margin-bottom:15px;

    color:#111827;

}

.footer-col a{

    display:block;

    text-decoration:none;

    color:#64748B;

    margin-bottom:8px;

    transition:.3s;

}

.footer-col a:hover{

    color:#111827;

}

/* PILLS */

.office-pills{

    display:flex;

    justify-content:center;

    gap:15px;

    margin:30px 0;

    flex-wrap:wrap;

}

.office-pills span{

    padding:10px 20px;

    border-radius:999px;

    background:white;

    border:
    1px solid rgba(17,24,39,.08);

    color:#111827;

}

/* TRUST */

.trust-row{

    display:flex;

    justify-content:center;

    gap:25px;

    flex-wrap:wrap;

    margin-bottom:25px;

}

.trust-item{

    color:#64748B;

    font-size:14px;

}

/* MARQUEE */

.footer-marquee{

    overflow:hidden;

    border-top:
    1px solid rgba(17,24,39,.08);

    border-bottom:
    1px solid rgba(17,24,39,.08);

    padding:10px 0;

}

.footer-track{

    width:max-content;

    white-space:nowrap;

    color:#64748B;

    animation:
    ticker 25s linear infinite;

}

@keyframes ticker{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* BOTTOM */

.footer-bottom{

    margin-top:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-social{

    display:flex;

    gap:10px;

}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:white;

    border:
    1px solid rgba(17,24,39,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    color:#111827;

    text-decoration:none;

    transition:.3s;

}

.footer-social a:hover{

    background:#111827;

    color:white;

}

.footer-bottom span{

    color:#64748B;

}

/* MOBILE */

@media(max-width:768px){

    .footer-watermark{

        font-size:5rem;

    }

    .footer-top{

        flex-direction:column;

        gap:12px;

    }

    .footer-links{

        grid-template-columns:1fr 1fr;

        gap:25px;

    }

    .footer-bottom{

        flex-direction:column;

        gap:15px;

        text-align:center;

    }

        .footer-links{

        display:grid;

        grid-template-columns:1fr 1fr;

        gap:35px 20px;

        width:100%;

        margin-bottom:25px;

    }

    .footer-col{

        display:flex;

        flex-direction:column;

    }

    .footer-col:nth-child(odd){

        text-align:left;

        align-items:flex-start;

    }

    .footer-col:nth-child(even){

        text-align:right;

        align-items:flex-end;

    }

}























.contact-static{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:24px;
}

.static-hero{
    text-align:left;
}

.static-pill{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 16px;
    border-radius:999px;
    background:rgba(110,168,255,.10);
    color:#2563EB;
    font-family:Inter;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:14px;
}

.static-hero h3{
    font-family:"Cormorant Garamond",serif;
    font-size:34px;
    line-height:1.05;
    color:#111827;
    font-weight:700;
    margin-bottom:10px;
}

.static-hero p{
    font-family:Inter;
    font-size:14px;
    line-height:1.8;
    color:#64748B;
    max-width:520px;
}

.static-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.static-action{
    flex:1;
    min-width:210px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:14px 16px;
    border-radius:18px;
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    text-decoration:none;
    color:#111827;
    font-family:Inter;
    font-size:14px;
    font-weight:600;
    transition:.35s;
}

.static-action:hover{
    transform:translateY(-3px);
    box-shadow:0 18px 35px rgba(59,130,246,.12);
    border-color:rgba(59,130,246,.30);
}

.static-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.static-card{
    border-radius:22px;
    border:1px solid #E5E7EB;
    background:linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    padding:18px 16px;
    box-shadow:0 10px 25px rgba(15,23,42,.04);
}

.card-icon{
    width:44px;
    height:44px;
    border-radius:16px;
    background:#F1F5F9;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#3B82F6;
    margin-bottom:10px;
    font-size:18px;
}

.static-card h4{
    font-family:Inter;
    font-size:14px;
    font-weight:700;
    color:#111827;
    margin-bottom:6px;
}

.static-card p{
    font-family:Inter;
    font-size:13px;
    line-height:1.7;
    color:#64748B;
}

.static-cta{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.cta-link{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 14px;
    border-radius:16px;
    border:1px solid #E5E7EB;
    background:#FFFFFF;
    text-decoration:none;
    font-family:Inter;
    font-size:14px;
    font-weight:600;
    color:#111827;
    transition:.35s;
}

.cta-link:hover{
    transform:translateY(-2px);
    border-color:rgba(59,130,246,.30);
    box-shadow:0 18px 35px rgba(59,130,246,.12);
}


/* ensure gradient span in this section looks good */
.contact-static .gradient{
    background:linear-gradient(90deg,#5E8DFF 0%, #B896FF 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){
    .static-actions{ 
        flex-direction:column;
    }
    .static-grid{ 
        grid-template-columns:1fr;
    }
    .static-hero h3{ 
        font-size:30px;
        text-align:left;
    }
}


.blog-link{

    text-decoration:none;

    color:inherit;

    display:block;

}

.blog-card{

    cursor:pointer;

    transition:.35s ease;

}

.blog-card:hover{

    transform:
    translateY(-8px);

}








::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#F8FAFC;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(180deg, #6EA8FF, #B892FF);
}


















@media (max-width:360px){

.about-hero{

    height:100vh;

    padding:0 15px;

    background-position:center center;

}

.about-inner{

    width:100%;

    padding:0 10px;

}

.about-pill{

    padding:10px 18px;

    font-size:9px;

    letter-spacing:2px;

    margin-bottom:20px;

}

.hero-title{

    font-size:38px !important;

    line-height:1;

    min-height:auto;

    margin-bottom:15px;

}

.hero-text{

    font-size:14px;

    line-height:1.7;

    max-width:100%;

    margin-top:15px;

}

.hero-buttons{

    flex-direction:column;

    gap:12px;

    margin-top:25px;

    width:100%;

    align-items:center;

}

.btn-primary,
.btn-secondary{

    width:100%;

    max-width:260px;

    padding:14px 20px;

    font-size:14px;

    text-align:center;

}

.bottom-fog{

    height:100px;

}

.floating-particles span{

    width:5px;

    height:5px;

}

.gradient-word{

    display:inline;

}

.cursor{

    font-size:38px;

}

}
