
@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{

height:100vh;

position:relative;

overflow:hidden;

display:flex;

justify-content:center;

align-items:center;

}



/* VIDEO */

.hero video{

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

object-fit:cover;

transform:scale(1.12);

animation:videoZoom 12s ease forwards;

}


@keyframes videoZoom{

to{

transform:scale(1);

}

}



/* OVERLAY */

.overlay{

position:absolute;

inset:0;

background:
linear-gradient(
to top,
rgba(0,0,0,.88),
rgba(0,0,0,.48),
rgba(0,0,0,.15)
);

transform:translateY(100%);

animation:overlayReveal 1.5s ease forwards;

}


@keyframes overlayReveal{

to{

transform:translateY(0);

}

}



/* GLOW */

.glow{

position:absolute;

width:550px;
height:550px;

border-radius:50%;

background:
linear-gradient(
90deg,
#5e8dff,
#cb90ff,
#ff9fd7
);

filter:blur(170px);

opacity:.24;

top:10%;
left:50%;

transform:translateX(-50%);

animation:glowMove 8s ease-in-out infinite;

}


@keyframes glowMove{

50%{

transform:
translateX(-50%)
translateY(30px);

}

}



/* STARS */

.stars{

position:absolute;

width:100%;
height:100%;

overflow:hidden;

}


.star{

position:absolute;

background:white;

border-radius:50%;

opacity:.9;

animation:floatStar linear infinite;

}


@keyframes floatStar{

0%{

transform:
translateY(0)
translateX(0);

opacity:0;

}

50%{

opacity:1;

}

100%{

transform:
translateY(-1200px)
translateX(120px);

opacity:0;

}

}



/* CONTENT */

.hero-content{

position:relative;

z-index:5;

width:100%;

/* max-width:760px; */

padding:0 25px;

display:flex;

flex-direction:column;

align-items:center;

text-align:center;

}



/* LABEL */

.label{

padding:12px 24px;

border-radius:60px;

background:
rgba(255,255,255,.08);

border:
1px solid rgba(255,255,255,.16);

backdrop-filter:blur(10px);

font-size:11px;

letter-spacing:4px;

color:white;

margin-bottom:30px;

opacity:0;

animation:fadeUp 1s ease forwards;

animation-delay:.5s;

}



/* TITLE */




.hero-content h1{

font-family:
"Cormorant Garamond",
serif;

font-size:88px;

line-height:.88;

font-weight:700;

color:white;

margin-bottom:24px;

width:100%;

max-width:1100px;

min-height:190px;

text-align:center;

display:flex;

justify-content:center;

align-items:center;

}



/* TYPEWRITER */

#typewriter{

display:block;

width:100%;

white-space:normal;

}


#typewriter br{

display:block;

}




.cursor{

display:inline-block;

width:3px;

height:78px;

background:white;

margin-left:6px;

vertical-align:middle;

animation:blink .7s infinite;

}


@keyframes blink{

50%{

opacity:0;

}

}



/* GRADIENT */

.gradient{

background:
linear-gradient(
90deg,
#7ea8ff 0%,
#cf9cff 45%,
#ffafd8 100%
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

background-clip:text;

}



/* DESCRIPTION */

.hero-content p{

font-size:18px;

line-height:1.8;

color:
rgba(255,255,255,.84);

max-width:650px;

margin-bottom:40px;

opacity:0;

animation:fadeUp 1.4s ease forwards;

animation-delay:1s;

}



/* BUTTONS */

.buttons{

display:flex;

gap:18px;

margin-bottom:55px;

opacity:0;

animation:fadeUp 1.6s ease forwards;

animation-delay:1.2s;

}


.btn{

padding:18px 36px;

border-radius:60px;

font-size:15px;

font-weight:500;

cursor:pointer;

transition:.45s;

border:none;

position:relative;

overflow:hidden;

}


.primary{

background:white;

color:#111827;

}


.secondary{

background:
rgba(255,255,255,.08);

border:
1px solid rgba(255,255,255,.16);

backdrop-filter:blur(10px);

color:white;

}


.btn:hover{

transform:
translateY(-6px)
scale(1.03);

box-shadow:
0 15px 35px rgba(0,0,0,.22);

}



/* STATS */

.stats{

display:flex;

justify-content:start;

gap:55px;

opacity:0;

animation:fadeUp 1.8s ease forwards;

animation-delay:1.5s;

}


.stat h2{

font-family:
"Cormorant Garamond",
serif;

font-size: 42px;

color:white;

margin-bottom:3px;

}


.stat span{

font-size:10px;

letter-spacing:3px;

color:
rgba(255,255,255,.72);

}



/* ANIMATION */

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(60px);

}

to{

opacity:1;

transform:translateY(0);

}

}







.hero{

position:relative;

overflow:hidden;

}



/* PREMIUM CURVE */

.hero-curve{

position:absolute;

bottom:-2px;

left:0;

width:100%;

line-height:0;

z-index:5;

}


.hero-curve svg{

display:block;

width:100%;

height:170px;

}





/* MOBILE */

@media(max-width:991px){

.hero-content{

max-width:100%;

padding:0 22px;

}


.hero-content h1{

font-size:44px;
width:100%;
/* border:1px solid black; */
line-height:.95;

min-height:auto;

max-width:100%;

}


.cursor{

height:50px;

}


.hero-content p{

font-size:13px;

line-height:1.7;

margin-bottom:30px;

}


.buttons{

flex-direction:column;

width:100%;

align-items:center;

margin-bottom:30px;

}


.btn{

width:100%;

max-width:300px;

}


.stats{

flex-wrap:wrap;

gap:28px;
justify-content:center;

}

.stat h2{
font-size:38px;
}

}


/* ========================= */
/* SIGNATURE SECTION */
/* ========================= */


.signature-heading{

width:100%;

padding:20px 0px 120px;

background:#EDF4FA;

display:flex;

flex-direction:column;

}


.heading-content{

text-align:center;

max-width:700px;

margin:auto;

}


.portfolio{

font-family:"Inter",sans-serif;

font-size:14px;

font-weight:500;

letter-spacing:6px;

color:#6b7280;

display:block;

margin-bottom:15px;

}



/* ========================= */
/* MAIN TITLE */
/* ========================= */


.heading-content h1{

font-family:
"Cormorant Garamond",
serif;

font-size:88px;

font-weight:700;

line-height:.95;

margin-bottom:35px;

display:flex;

justify-content:center;

align-items:center;

flex-wrap:wrap;

}


/* TYPEWRITER */

#typewriter{

position:relative;

display:inline-block;

text-align:center;

min-width:auto;

}



/* Signature */

.signature-word{

color:#121212;

}


/* Properties */

.properties-word{

background:
linear-gradient(
90deg,
#5E8DFF 0%,
#B896FF 100%
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

background-clip:text;

}



/* Cursor */

#typewriter::after{

content:"";

position:absolute;

display:none;

right:-10px;

top:12px;

width:3px;

height:70px;

background:#121212;

animation:blink .8s infinite;

}


@keyframes blink{

50%{

opacity:0;

}

}



/* ========================= */
/* DESCRIPTION */
/* ========================= */


.heading-content p{

font-family:
"Inter",
sans-serif;

font-size:18px;

font-weight:400;

line-height:1.7;

color:#6b7280;

max-width:650px;

margin:auto;

}




/* ========================= */
/* CARDS */
/* ========================= */






.cards-container{

    width:95%;

    margin:auto;

    padding:70px 50px;

    display:flex;

    flex-direction:column;

    gap:90px;

}



/* ========================= */
/* SINGLE CARD */
/* ========================= */

.cards{

    width:100%;

    min-height:64vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:60px;

}



/* REVERSE CARD */

.cards.reverse{

    flex-direction:row-reverse;

}



/* ========================= */
/* IMAGE SIDE */
/* ========================= */

.img-container{

    width:47%;

    height:100%;

    display:flex;

    align-items:center;

}


.img-part{

    width:100%;

    height:54vh;

    border-radius:28px;

    overflow:hidden;

    position:relative;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:
    0 12px 35px rgba(0,0,0,.08);

}


.img-part img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    transition:1s ease;

}


.img-part:hover img{

    transform:scale(1.05);

}



/* ========================= */
/* TAGS */
/* ========================= */

.tags{

    position:absolute;

    top:20px;

    left:20px;

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    z-index:2;

}


.tags span{

    padding:11px 18px;

    border-radius:40px;

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    font-family:Inter;

    font-size:13px;

    color:#111827;

}


.price-tag{

    position:absolute;

    top:20px;

    right:20px;

    padding:11px 20px;

    border-radius:40px;

    background:
    rgba(255,255,255,.92);

    backdrop-filter:blur(10px);

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:20px;

    font-weight:700;

}



/* ========================= */
/* CONTENT SIDE */
/* ========================= */

.content{

    width:48%;

    min-height:54vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    padding-top:0px;

}



/* LOCATION */

.location{

    font-family:Inter;

    font-size:11px;

    letter-spacing:5px;

    color:#7A8798;

    margin-bottom:12px;

}



/* TITLE */

.content h2{

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:62px;

    line-height:.86;

    font-weight:700;

    color:#111827;

    margin-bottom:14px;

    min-height:95px;

}



/* ========================= */
/* VIDEO */
/* ========================= */

.video-part{

    width:420px;

    height:145px;

    border-radius:120px;

    overflow:hidden;

    position:relative;

    margin-bottom:18px;

    flex-shrink:0;

    background:#dfe7ef;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}


.video-part video{

    width:100%;

    height:100%;

    object-fit:cover;

}


.play-btn{

    position:absolute;

    top:50%;
    left:50%;

    transform:
    translate(-50%,-50%);

    width:62px;
    height:62px;

    border-radius:50%;

    border:none;

    background:white;

    font-size:18px;

    cursor:pointer;

}



/* ========================= */
/* DESCRIPTION */
/* ========================= */

.content p{

    font-family:Inter;

    font-size:15px;

    line-height:1.7;

    color:#6B7280;

    max-width:92%;

    margin-bottom:20px;

}



/* ========================= */
/* STATS */
/* ========================= */

.stats{

    display:flex;

    gap:38px;

    margin-bottom:20px;

}


.stat h3{

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:32px;

    color:#111827;

}


.stat span{

    font-family:Inter;

    font-size:10px;

    letter-spacing:2px;

    color:#7A8798;

}



/* ========================= */
/* BUTTON */
/* ========================= */

.request-btn{

    font-family:Inter;

    font-size:16px;

    font-weight:600;

    color:#111827;

    cursor:pointer;

    transition:.4s;

}


.request-btn:hover{

    transform:translateX(8px);

}



/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){

.cards-container{

    padding:20px 12px;

    gap:70px;

}



/* CARD */

.cards{

    flex-direction:column;

    min-height:auto;

    gap:30px;

    align-items:flex-start;

}


.cards.reverse{

    flex-direction:column;

}



/* IMAGE */

.img-container{

    width:100%;

}


.img-part{

    height:320px;

    border-radius:24px;

}



/* TAGS */

.tags{

    top:14px;

    left:14px;

    gap:8px;

}


.tags span{

    padding:8px 14px;

    font-size:11px;

}


.price-tag{

    top:14px;

    right:14px;

    padding:9px 14px;

    font-size:16px;

}



/* CONTENT */

.content{

    width:100%;

    min-height:auto;

    padding:0 4px;

}


.location{

    font-size:10px;

    letter-spacing:3px;

}


.content h2{

    font-size:48px;

    line-height:.92;

    min-height:auto;

    margin-bottom:16px;

}



/* VIDEO */

.video-part{

    width:100%;

    height:145px;

    border-radius:90px;

    margin-bottom:18px;

}



/* DESCRIPTION */

.content p{

    font-size:14px;

    line-height:1.7;

    max-width:100%;

    margin-bottom:22px;

}



/* STATS */

.stats{

    gap:28px;

    flex-wrap:wrap;

}


.stat h3{

    font-size:28px;

}


.stat span{

    font-size:9px;

}



/* BUTTON */

.request-btn{

    font-size:15px;

}

}



















.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;

    }

}





















/* ========================= */
/* VISION SECTION */
/* ========================= */

.vision-section{

width:100%;

height:75vh;

background:#fff;

display:flex;

align-items:center;

overflow:hidden;

}



.vision-container{

width:90%;

max-width:1450px;

height:55vh;

margin:auto;

display:grid;

grid-template-columns:28% 72%;

align-items:center;

}



/* LEFT */

.vision-left{

position:relative;

display:flex;

flex-direction:column;

justify-content:center;

gap:40px;

}



.left-shape{

position:absolute;

width:550px;

height:550px;

left:-300px;

top:-150px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(110,168,255,.12),
rgba(184,146,255,.04)
);

}



.vision-card{

position:relative;

width:260px;

padding:18px;

background:white;

border-radius:20px;

box-shadow:
0 25px 50px rgba(110,168,255,.10),
0 15px 35px rgba(184,146,255,.08),
0 10px 20px rgba(0,0,0,.06);

opacity:0;

transform:translateY(40px);

animation:cardReveal .8s forwards;

z-index:2;

}



.card-1{

animation-delay:.2s;

}



.card-2{

margin-left:60px;

animation-delay:.7s;

}



.card-3{

margin-left:15px;

animation-delay:1.2s;

}



.card-number{

position:absolute;

left:-18px;

top:-28px;

font-size:58px;

font-family:
"Cormorant Garamond",
serif;

font-weight:700;

color:#DADADA;

line-height:1;

z-index:-1;

}



.vision-card h4{

font-family:Inter;

font-size:16px;

font-weight:600;

margin-bottom:8px;

color:#111827;

}



.vision-card p{

font-family:Inter;

font-size:13px;

line-height:1.7;

color:#6B7280;

}



/* CONTENT */

.vision-content{

position:relative;

height:380px;

display:flex;

flex-direction:column;

justify-content:space-between;

gap:18px;

padding-left:60px;

overflow:visible;

z-index:5;

}



/* ORBIT */

.content-circle{

position:absolute;

width:420px;

height:420px;

right:-40px;

top:50%;

transform:translateY(-50%);

border-radius:50%;

border:2px solid rgba(110,168,255,.10);

animation:ringRotate 30s linear infinite;

z-index:-1;

}



.content-circle::before{

content:"";

position:absolute;

inset:35px;

border-radius:50%;

border:1px solid rgba(110,168,255,.12);

animation:ringRotateReverse 20s linear infinite;

}



.content-circle::after{

content:"";

position:absolute;

inset:70px;

border-radius:50%;

border:1px solid rgba(184,146,255,.12);

animation:ringRotate 15s linear infinite;

}



/* ORBITS */

.orbit{

position:absolute;

border-radius:50%;

background:
linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

}



.orbit-1{

width:14px;

height:14px;

top:-7px;

left:50%;

transform:translateX(-50%);

animation:pulseNode 3s infinite;

}



.orbit-2{

width:22px;

height:22px;

right:-10px;

top:50%;

transform:translateY(-50%);

animation:pulseNode 4s infinite;

}



.orbit-3{

width:65px;

height:65px;

bottom:15px;

left:50%;

transform:translateX(-50%);

box-shadow:
0 0 35px rgba(110,168,255,.25);

animation:floatNode 5s ease-in-out infinite;

}



/* TEXT */

.section-tag{

display:flex;

align-items:center;

gap:12px;

font-family:Inter;

font-size:11px;

font-weight:600;

letter-spacing:3px;

color:#6EA8FF;

}



.section-tag span{

width:60px;

height:2px;

background:
linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

}



.vision-content h2{

font-family:
"Cormorant Garamond",
serif;

font-size:58px;

line-height:.9;

font-weight:700;

color:#111827;

max-width:560px;

}



.gradient-text{

background:
linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}



.vision-content p{

font-family:Inter;

font-size:14px;

line-height:1.8;

color:#6B7280;

max-width:460px;

}



.vision-stats{

display:flex;

gap:40px;

}



.stat h3{

font-family:
"Cormorant Garamond",
serif;

font-size:32px;

font-weight:700;

color:#111827;

margin-bottom:4px;

}



.stat span{

font-family:Inter;

font-size:10px;

letter-spacing:1px;

color:#7A8798;

}



/* ANIMATIONS */

@keyframes cardReveal{

to{

opacity:1;

transform:translateY(0);

}

}



@keyframes ringRotate{

from{

transform:
translateY(-50%)
rotate(0deg);

}

to{

transform:
translateY(-50%)
rotate(360deg);

}

}



@keyframes ringRotateReverse{

from{

transform:rotate(360deg);

}

to{

transform:rotate(0deg);

}

}



@keyframes pulseNode{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.25);

}

}



@keyframes floatNode{

0%,100%{

transform:
translateX(-50%)
translateY(0);

}

50%{

transform:
translateX(-50%)
translateY(-12px);

}

}


/* ========================= */
/* TABLET */
/* ========================= */

@media(max-width:1200px){

.vision-container{

grid-template-columns:35% 65%;

}

.vision-content{

padding-left:40px;

}

.vision-content h2{

font-size:48px;

}

.content-circle{

width:320px;

height:320px;

right:-20px;

}

}



/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){

.vision-section{

height:auto;

padding:80px 0;

}

.vision-container{

display:flex;

flex-direction:column;

height:auto;

gap:60px;

}

.vision-left{

width:100%;

align-items:center;

}

.vision-card{

width:100%;

max-width:340px;

}

.card-2,
.card-3{

margin-left:0;

}

.vision-content{

width:100%;

height:auto;

padding-left:0;

text-align:center;

align-items:center;

}

.section-tag{

justify-content:center;

}

.vision-content h2{

font-size:42px;

max-width:100%;

}

.vision-content p{

max-width:100%;

}

.vision-stats{

justify-content:center;

flex-wrap:wrap;

gap:25px;

}

.content-circle{

display:none;

}

}



/* ========================= */
/* SMALL PHONES */
/* ========================= */

@media(max-width:576px){

.vision-section{

padding:60px 0;

}

.vision-content h2{

font-size:34px;

line-height:1;

}

.vision-content p{

font-size:13px;

}

.vision-card{

padding:16px;

}

.card-number{

font-size:42px;

top:-18px;

left:-10px;

}

.vision-stats{

gap:20px;

}

.stat h3{

font-size:24px;

}

.stat span{

font-size:10px;

}

}































/* ========================= */
/* JOURNEY SECTION */
/* ========================= */
.journey-section{

width:100%;

height:30vh;

background:
linear-gradient(
180deg,
#ffffff 0%,
#f9fbfd 30%,
#edf3f8 70%,
#e8eff5 100%
);

display:flex;
margin-top:50px;
align-items:center;

}

.journey-container{

width:90%;

max-width:1400px;

margin:auto;

display:flex;

flex-direction:column;

gap:18px;

}

.journey-heading{

text-align:center;

}

.journey-tag{

display:block;

font-family:Inter;

font-size:10px;

font-weight:600;

letter-spacing:4px;

color:#6B7280;

margin-bottom:8px;

}

.journey-heading h2{

font-family:"Cormorant Garamond",serif;

font-size:42px;

line-height:.9;

font-weight:700;

color:#111827;

}

.journey-heading h2 span{

background:linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.timeline-wrapper{

position:relative;

padding:0 40px;

}

.timeline-line{

position:absolute;

top:22px;

left:40px;

right:40px;

height:2px;

background:#E5E7EB;

}

.timeline-progress{

position:absolute;

top:22px;

left:40px;

width:0%;

height:2px;

background:linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

transition:.4s ease;

}

.timeline-points{

display:flex;

justify-content:space-between;

position:relative;

z-index:2;

}

.timeline-point{

display:flex;

flex-direction:column;

align-items:center;

gap:8px;

cursor:pointer;

}

.circle{

width:44px;

height:44px;

border-radius:50%;

background:white;

border:1px solid #E5E7EB;

display:flex;

align-items:center;

justify-content:center;

font-family:Inter;

font-size:11px;

font-weight:600;

transition:.4s;

}

.timeline-point.active .circle{

background:linear-gradient(
135deg,
#6EA8FF,
#B892FF
);

color:white;

border:none;

transform:scale(1.08);

box-shadow:
0 10px 20px rgba(110,168,255,.20);

}

.timeline-point span{

font-family:Inter;

font-size:10px;

color:#6B7280;

}

/* INFO */

.journey-info{

text-align:center;

animation:fadeInfo .4s ease;

}

.journey-info h3{

font-family:
"Cormorant Garamond",
serif;

font-size:26px;

font-weight:700;

color:#111827;

margin-bottom:4px;

}

.journey-info p{

font-family:Inter;

font-size:13px;

color:#6B7280;

}

@keyframes fadeInfo{

from{

opacity:0;

transform:translateY(8px);

}

to{

opacity:1;

transform:translateY(0);

}

}

































.about-modern{
    position: relative;
    width: 100%;
    padding: 120px 0;
    background: #fff;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================= */
/* DIAGONAL BANDS */
/* ========================= */

.diagonal-band{

    position: absolute;

    width: 160%;

    left: -30%;

    padding: 16px 0;

    text-align: center;

    font-family: Inter;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 4px;

    text-transform: uppercase;

    color: rgba(17,24,39,.12);

    background:
        linear-gradient(
            90deg,
            rgba(110,168,255,.06),
            rgba(184,146,255,.08)
        );

    z-index: 1;

    user-select: none;
}

.band-1{
    top: 80px;
    transform: rotate(6deg);
}

.band-2{
    bottom: 80px;
    transform: rotate(-6deg);
}

/* ========================= */
/* CARD */
/* ========================= */

.about-card{

    position: relative;

    width: 90%;
    max-width: 1400px;

    background: white;

    border-radius: 36px;

    border: 1px solid #edf1f7;

    padding: 60px;

    text-align: center;

    box-shadow:
        0 30px 80px rgba(0,0,0,.06);

    z-index: 2;
}

.about-pill{

    display: inline-block;

    padding: 8px 20px;

    border-radius: 999px;

    background: #f5f8ff;

    color: #6EA8FF;

    font-size: 12px;

    font-family: Inter;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 24px;
}

.about-card h2{

    font-family: "Cormorant Garamond", serif;

    font-size: 64px;

    line-height: .95;

    color: #111827;

    max-width: 900px;

    margin: auto auto 35px;
}

.about-card h2 span{

    background:
        linear-gradient(
            90deg,
            #6EA8FF,
            #B892FF
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-tags{

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 14px;

    margin-bottom: 50px;
}

.about-tag{

    padding: 12px 24px;

    background: #f8fafc;

    border-radius: 999px;

    font-size: 14px;

    font-family: Inter;

    color: #374151;

    transition: .3s;
}

.about-tag:hover{
    transform: translateY(-4px);
}

.about-stats{

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 70px;
}

.about-stat h3{

    font-family: "Cormorant Garamond", serif;

    font-size: 54px;

    margin-bottom: 6px;

    color: #111827;
}

.about-stat span{

    font-size: 14px;

    font-family: Inter;

    color: #6b7280;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){

    .about-modern{
        padding: 80px 0;
    }

    .diagonal-band{

        width: 220%;

        left: -60%;

        font-size: 10px;

        letter-spacing: 2px;

        padding: 12px 0;
    }

    .band-1{
        top: 40px;
    }

    .band-2{
        bottom: 40px;
    }

    .about-card{

        width: 92%;

        padding: 35px 20px;

        border-radius: 24px;
    }

    .about-card h2{

        font-size: 36px;

        line-height: 1.05;
    }

    .about-tags{
        gap: 8px;
        margin-bottom: 30px;
    }

    .about-tag{

        font-size: 11px;

        padding: 8px 14px;
    }

    .about-stats{

        gap: 24px;
    }

    .about-stat h3{

        font-size: 32px;
    }

    .about-stat span{

        font-size: 11px;
    }
}














  
.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;

    }

}



























#loader{

position:fixed;
inset:0;

display:flex;
justify-content:center;
align-items:center;

background:
#d1dfe8
;

z-index:999999;

overflow:hidden;

}



/* BACKGROUND GLOW */

#loader::before{

content:"";

position:absolute;

width:700px;

height:700px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(110,168,255,.15),
transparent 70%
);

filter:blur(60px);

animation:loaderGlow 5s ease-in-out infinite;

}

#loader::after{

content:"";

position:absolute;

width:500px;

height:500px;

border-radius:50%;

right:-150px;

bottom:-150px;

background:
radial-gradient(
circle,
rgba(184,146,255,.12),
transparent 70%
);

filter:blur(50px);

}



/* VIDEO CONTAINER */

#loaderVideo{

width:500px;
height:auto;

object-fit:contain;

background:none;

box-shadow:none;

border:none;

border-radius:0;

}




/* BRAND TEXT */

.loader-title{

margin-top:35px;

font-family:
"Cormorant Garamond",
serif;

font-size:58px;

font-weight:700;

letter-spacing:4px;

color:#111827;

position:relative;

z-index:2;

}

.loader-subtitle{

margin-top:8px;

font-family:Inter;

font-size:12px;

letter-spacing:6px;

color:#6B7280;

position:relative;

z-index:2;

}



/* ANIMATION */

@keyframes loaderGlow{

0%,100%{

transform:scale(1);

}

50%{

transform:scale(1.15);

}

}



/* WEBSITE */

#mainSite{

opacity:1;

transform:translateY(0);

transition:none;

}




/* MOBILE */

@media(max-width:768px){

#loaderVideo{

width:280px;

height:280px;

border-radius:24px;

}

.loader-title{

font-size:42px;

}

.loader-subtitle{

font-size:10px;

letter-spacing:4px;

}

}




/* REVOLVING RINGS */

.loader-ring{

position:absolute;

border-radius:50%;

border:1px solid rgba(110,168,255,.12);

pointer-events:none;

}

.ring-1{

width:700px;
height:700px;

animation:
rotateClock 35s linear infinite;

}

.ring-2{

width:850px;
height:850px;

animation:
rotateAnti 50s linear infinite;

}

.ring-3{

width:1000px;
height:1000px;

animation:
rotateClock 70s linear infinite;

opacity:.6;

}

/* MOVING TEXT */

.loader-marquee{

position:absolute;

bottom:80px;

width:100%;

overflow:hidden;

z-index:5;

}

.marquee-track{

display:inline-block;

white-space:nowrap;

font-family:Inter;

font-size:13px;

font-weight:600;

letter-spacing:4px;

color:#6B7280;

animation:
marqueeMove 25s linear infinite;

}

/* ANIMATIONS */

@keyframes rotateClock{

from{

transform:rotate(0deg);

}

to{

transform:rotate(360deg);

}

}

@keyframes rotateAnti{

from{

transform:rotate(360deg);

}

to{

transform:rotate(0deg);

}

}

@keyframes marqueeMove{

from{

transform:translateX(100%);

}

to{

transform:translateX(-100%);

}

}



/* SHOOTING STARS */

.shooting-stars{

position:absolute;

inset:0;

overflow:hidden;

pointer-events:none;

z-index:1;

}

.shooting-stars span{

position:absolute;

width:180px;

height:2px;

background:
linear-gradient(
90deg,
rgba(255,255,255,0),
rgba(110,168,255,.9),
rgba(255,255,255,0)
);

border-radius:999px;

filter:blur(.5px);

opacity:0;

}

/* STAR 1 */

.shooting-stars span:nth-child(1){

top:15%;
left:-20%;

animation:shootStar 8s linear infinite;

}

/* STAR 2 */

.shooting-stars span:nth-child(2){

top:30%;
left:-30%;

animation:shootStar 10s linear infinite 2s;

}

/* STAR 3 */

.shooting-stars span:nth-child(3){

top:45%;
left:-25%;

animation:shootStar 7s linear infinite 4s;

}

/* STAR 4 */

.shooting-stars span:nth-child(4){

top:60%;
left:-35%;

animation:shootStar 9s linear infinite 1s;

}

/* STAR 5 */

.shooting-stars span:nth-child(5){

top:75%;
left:-25%;

animation:shootStar 11s linear infinite 5s;

}

/* STAR 6 */

.shooting-stars span:nth-child(6){

top:85%;
left:-20%;

animation:shootStar 8s linear infinite 3s;

}

@keyframes shootStar{

0%{

transform:
translateX(0)
translateY(0)
rotate(-20deg);

opacity:0;

}

5%{

opacity:1;

}

20%{

opacity:1;

}

100%{

transform:
translateX(1800px)
translateY(450px)
rotate(-20deg);

opacity:0;

}

}


#loader::before{

content:"";

position:absolute;

width:800px;

height:800px;

border-radius:50%;

background:
radial-gradient(
circle,
rgba(110,168,255,.12),
transparent 70%
);

filter:blur(80px);

animation:
pulseGlow 6s ease-in-out infinite;

}













/* 

.mobile-dropdown{

position:absolute;

top:95px;

right:20px;

width:260px;

background:white;

border-radius:24px;

padding:15px;

display:flex;

flex-direction:column;

gap:5px;

box-shadow:
0 20px 50px rgba(15,23,42,.12);

opacity:0;

visibility:hidden;

transform:
translateY(-20px);

transition:.35s ease;

z-index:99999;

}

.mobile-dropdown.show{

opacity:1;

visibility:visible;

transform:
translateY(0);

}

.mobile-dropdown a{

text-decoration:none;

font-family:Inter;

font-size:15px;

font-weight:500;

color:#111827;

padding:14px 16px;

border-radius:14px;

transition:.3s ease;

}

.mobile-dropdown a:hover{

background:
linear-gradient(
90deg,
rgba(110,168,255,.12),
rgba(184,146,255,.12)
);

}



@media(max-width:991px){

.nav-links{

display:none;

}

.menu-btn{

display:flex;

width:46px;

height:46px;

align-items:center;

justify-content:center;

font-size:24px;

cursor:pointer;

}

.nav-btn{

display:none;

}

}



@media(min-width:992px){

.mobile-dropdown{

display:none;

}

.menu-btn{

display:none;

}

} */


















/* ========================= */
/* SIGNATURE SECTION - 360px */
/* ========================= */

@media (max-width:360px){

.signature-heading{

    padding:40px 0 70px;

}

.heading-content{

    width:100%;

    padding:0 18px;

}

.portfolio{

    font-size:10px;

    letter-spacing:3px;

    margin-bottom:12px;

}

.heading-content h1{

    font-size:42px;

    line-height:1;

    margin-bottom:20px;

}

#typewriter1{

    display:block;

    width:100%;

    word-break:break-word;

}

.signature-word,
.properties-word{

    display:block;

}

#typewriter1::after{

    right:-5px;

    top:5px;

    width:2px;

    height:35px;

}

.heading-content p{

    font-size:14px;

    line-height:1.7;

    max-width:100%;

    padding:0 5px;

}

}













/* ========================= */
/* JOURNEY SECTION - 360px */
/* ========================= */

@media (max-width:360px){

.journey-section{

    height:auto;

    padding:50px 0;

    margin-top:30px;

}

.journey-container{

    width:95%;

    gap:25px;

}

.journey-tag{

    font-size:9px;

    letter-spacing:3px;

}

.journey-heading h2{

    font-size:30px;

    line-height:1;

}

.timeline-wrapper{

    padding:0 5px;

}

.timeline-line{

    left:10px;

    right:10px;

    top:18px;

}

.timeline-progress{

    left:10px;

    top:18px;

}

.timeline-points{

    gap:6px;

}

.timeline-point{

    flex:1;

}

.circle{

    width:34px;

    height:34px;

    font-size:9px;

}

.timeline-point span{

    font-size:8px;

    text-align:center;

    line-height:1.3;

}

.journey-info{

    padding:0 10px;

}

.journey-info h3{

    font-size:22px;

    margin-bottom:8px;

}

.journey-info p{

    font-size:12px;

    line-height:1.6;

}

}












/* ========================= */
/* HERO - 360px MOBILE */
/* ========================= */

@media (max-width: 360px){

.hero{

    height:100vh;

    padding:0 12px;

}

.hero-content{

    padding:0 10px;

}

.label{

    font-size:9px;

    letter-spacing:2px;

    padding:10px 16px;

    margin-bottom:20px;

}

.hero-content h1{

    font-size:36px;

    line-height:.95;

    min-height:120px;

    max-width:100%;

}

.cursor{

    height:36px;

    width:2px;

}

.hero-content p{

    font-size:13px;

    line-height:1.7;

    max-width:100%;

    margin-bottom:25px;

}

.buttons{

    width:100%;

    gap:12px;

    margin-bottom:30px;

    flex-direction:column;

    align-items:center;

}

.btn{

    width:100%;

    max-width:260px;

    padding:14px 20px;

    font-size:14px;

}

.stats{

    width:100%;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

    justify-items:center;

}

.stat{

    text-align:center;

}

.stat h2{

    font-size:28px;

}

.stat span{

    font-size:8px;

    letter-spacing:1.5px;

}

.glow{

    width:320px;

    height:320px;

    filter:blur(100px);

}

.hero-curve svg{

    height:90px;

}

}














::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#F8FAFC;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(180deg, #6EA8FF, #B892FF);
}

