@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;

}













/* ========================= */
/* HERO (Projects)           */
/* ========================= */
.projects-section{

    position:relative;
    width:100%;
    margin:auto;
    padding:120px 0;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbff 100%
    );

    overflow:hidden;

}

.projects-header{

    text-align:center;

    max-width:800px;

    margin:auto auto 70px;

}

.section-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(110,168,255,.12);

    color:#6EA8FF;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;

}

.projects-header h2{

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:72px;

    line-height:.95;

    color:#111827;

    margin-bottom:20px;

}

.gradient-text{

    background:
    linear-gradient(
        135deg,
        #6EA8FF,
        #8B5CF6
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:
    transparent;

}

.projects-header p{

    font-size:18px;

    line-height:1.9;

    color:#64748B;

}

.featured-project{

    width:92%;

    max-width:1400px;

    margin:0 auto 60px;

    display:grid;

    grid-template-columns:
    1.3fr 1fr;

    gap:35px;

    background:white;

    border-radius:40px;

    overflow:hidden;

    box-shadow:
    0 25px 70px
    rgba(15,23,42,.06);

}

.featured-image{

    height:500px;

}

.featured-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:1s ease;

}

.featured-project:hover img{

    transform:
    scale(1.05);

}

.featured-content{

    padding:50px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.featured-label{

    color:#6EA8FF;

    font-size:12px;

    letter-spacing:2px;

    font-weight:700;

}

.featured-content h3{

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:60px;

    line-height:.95;

    margin:15px 0;

}

.featured-content p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:30px;

}

.featured-stats{

    display:flex;

    gap:35px;

    margin-bottom:30px;

}

.featured-stats h4{

    color:#6EA8FF;

    font-size:28px;

}

.featured-btn{

    width:max-content;

    padding:16px 28px;

    border-radius:999px;

    text-decoration:none;

    color:white;

    background:
    linear-gradient(
        135deg,
        #6EA8FF,
        #8B5CF6
    );

    transition:.3s;

}

.featured-btn:hover{

    transform:
    translateY(-4px);

}

.projects-bg-circle{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    opacity:.25;

}

.circle-1{

    width:350px;

    height:350px;

    background:#6EA8FF;

    left:-120px;

    top:50px;

}

.circle-2{

    width:300px;

    height:300px;

    background:#8B5CF6;

    right:-100px;

    bottom:50px;

}

@media(max-width:991px){

    .featured-project{

        grid-template-columns:
        1fr;

    }

    .featured-image{

        height:300px;

    }

    .projects-header h2{

        font-size:48px;

    }

    .featured-content{

        padding:30px;

    }

    .featured-content h3{

        font-size:42px;

    }

}












  
.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;
    }
}






































.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;

    }

}





















.about-hero{

position:relative;

width:100%;

height:100vh;

overflow:hidden;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

background:url("../assests/about-main.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;

}

}














.hero-title{
    font-size: clamp(50px, 8vw, 110px);
    line-height: .95;
    font-family: "Cormorant Garamond", serif;
    color: white;
    font-weight: 700;
}

.gradient-word{

    display: inline-block;

    background: linear-gradient(
        135deg,
        #6EA8FF,
        #B892FF,
        #FF8FB1
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.cursor{

    color: #ffffff;

    animation: blink .8s infinite;

}

@keyframes blink{

    0%,50%{
        opacity:1;
    }

    51%,100%{
        opacity:0;
    }

}













.mobile-dropdown{
    position: absolute;
    top: 90px;
    right: 20px;

    width: 260px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0,0,0,.08);

    padding: 15px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition: .3s ease;

    z-index: 9999;
}

.mobile-dropdown.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-dropdown a{
    text-decoration: none;
    color: #111827;
    padding: 12px;
    border-radius: 12px;
}

.mobile-dropdown a:hover{
    background: #f5f8ff;
}











.project-link{
    text-decoration:none;
    color:inherit;
}

.projects-grid{

    width:92%;

    max-width:1400px;

    margin:50px auto 0;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

}

.project-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 20px 60px
    rgba(15,23,42,.06);

    transition:.4s;

}

.project-card:hover{

    transform:
    translateY(-10px);

}

.project-image{
    height:500px;
    width: 100%;
}

@media (max-width:360px){
    .project-image{
        height:auto;
        width:100%;
    }
}

.project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.project-body{

    padding:25px;

}

.project-category{

    color:#6EA8FF;

    font-size:12px;

    font-weight:700;

}

.project-body h3{

    margin:12px 0;
    margin-bottom:5px;
    color:#111827;
    font-size:28px;

}

.project-body p{

    margin:12px 0;
    margin-bottom: 0px;

    color:#64748B;

    line-height:1.8;

}

@media(max-width:991px){

    .projects-grid{

        grid-template-columns:
        1fr;

    }

}


















/* ========================= */
/* ABOUT HERO - 360px */
/* ========================= */

@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;

}

}












.project-category{

    margin-top:80px;

}

.category-title{

    font-size:52px;

    font-family:
    "Cormorant Garamond",
    serif;
    
    margin-bottom:35px;

    color:  #8B5CF6;

    margin-left: 30px;


}

@media(max-width:768px){

    .category-title{

        font-size:38px;

    }

}








.featured-slider{

    position:relative;

    width:100%;

    overflow:hidden;

    margin:60px 0 100px;

}

.slider-track{

    display:flex;

    transition:.6s ease;

}

.featured-card{

    min-width:100%;

    display:grid;

    grid-template-columns:1.2fr 1fr;

    background:white;

    overflow:hidden;

    box-shadow:
    0 25px 60px
    rgba(15,23,42,.08);

}

.featured-card img{

    width:100%;

    height:600px;

    object-fit:cover;

}

.featured-content{

    padding:70px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.featured-label{

    font-size:12px;

    letter-spacing:3px;

    color:#6EA8FF;

    margin-bottom:20px;

}

.featured-content h3{

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:68px;

    line-height:1;

    margin-bottom:25px;

}

.featured-content p{

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:35px;

}

.featured-stats{

    display:flex;

    gap:40px;

    margin-bottom:40px;

}

.featured-stats h4{

    font-size:32px;

    color:#111827;

}

.featured-stats span{

    color:#64748B;

}

.featured-btn{

    width:max-content;

    padding:18px 35px;

    background:#111827;

    color:white;

    text-decoration:none;

    transition:.3s;

}

.featured-btn:hover{

    transform:translateY(-4px);

}

.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    background:white;

    cursor:pointer;

    z-index:10;

    font-size:24px;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.1);

}

.prev{

    left:20px;

}

.next{

    right:20px;

}

@media(max-width:991px){

    .featured-card{

        grid-template-columns:1fr;

    }

    .featured-card img{

        height:300px;

    }

    .featured-content{

        padding:30px;

    }

    .featured-content h3{

        font-size:42px;

    }

}





@media(max-width:991px){

    .slider-btn{

        width:45px;
        height:45px;

        font-size:18px;

        top:200px; /* position over image only */

        background:rgba(255,255,255,.9);

        z-index:20;

    }

    .prev{
        left:10px;
    }

    .next{
        right:10px;
    }

    .featured-content{
        padding:25px;
    }

}







::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#F8FAFC;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(180deg, #6EA8FF, #B892FF);
}