
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500&display=swap');


*{

margin:0;
padding:0;
box-sizing:border-box;

}


body{

overflow-x:hidden;

}



































/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{

position:fixed;

top:0;

left:0;

width:100%;

height:90px;

padding:0 70px;

display:flex;

justify-content:space-between;

align-items:center;

z-index:9999;

transition:.45s ease;

background:transparent;

}


/* SCROLLED */

.navbar.scrolled{

background:white;

box-shadow:
0 10px 30px rgba(0,0,0,.06);

}



/* ========================= */
/* LOGO */
/* ========================= */

.nav-logo{

display:flex;

align-items:center;

gap:14px;

}


.logo-box{

width:48px;

height:48px;

border-radius:14px;

background:#0F172A;

display:flex;

justify-content:center;

align-items:center;

font-size:22px;

color:white;

}


.nav-logo h2{

font-family:
"Cormorant Garamond",
serif;

font-size:42px;

font-weight:700;

color:white;

transition:.4s;

}



/* ========================= */
/* RIGHT SIDE */
/* ========================= */

.nav-right{

display:flex;

align-items:center;

gap:28px;

}



/* LINKS */

.nav-links{

display:flex;

align-items:center;

gap:38px;

}


.nav-links a{

text-decoration:none;

font-family:Inter;

font-size:15px;

color:
rgba(255,255,255,.82);

position:relative;

transition:.4s;

}


.nav-links a:hover{

color:white;

}


.nav-links a.active::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:100%;

height:2px;

border-radius:10px;

background:
linear-gradient(
90deg,
#7BA8FF,
#DCA6FF
);

}



/* ========================= */
/* BUTTON */
/* ========================= */

.nav-btn{

display: flex;

align-items: center;

gap: 3px;

height:52px;

padding:0 24px;

border-radius:60px;

border:none;

background:#0F172A;

font-family:Inter;

font-size:15px;

font-weight:500;

color:white;

cursor:pointer;

transition:.4s;

}


.nav-btn:hover{

transform:translateY(-3px);

}



/* ========================= */
/* MOBILE MENU ICON */
/* ========================= */

.menu-btn{

display:none;

width:48px;

height:48px;

border-radius:14px;

background:
rgba(255,255,255,.12);

backdrop-filter:blur(10px);

justify-content:center;

align-items:center;

font-size:22px;

color:white;

cursor:pointer;

}



/* ========================= */
/* SCROLLED COLORS */
/* ========================= */

.navbar.scrolled .nav-logo h2{

color:#111827;

}


.navbar.scrolled .nav-links a{

color:#4B5563;

}


.navbar.scrolled .nav-links a:hover{

color:#111827;

}


.navbar.scrolled .menu-btn{

background:#F3F4F6;

color:#111827;

}



/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:991px){

.navbar{

padding:0 18px;

height:78px;

}


/* HIDE LINKS */

.nav-links{

display:none;

}


/* SHOW MENU ICON */

.menu-btn{

display:flex;

}


/* SPACING */

.nav-right{

gap:14px;

}


/* LOGO */

.nav-logo h2{

font-size:30px;

}


.logo-box{

width:42px;

height:42px;

font-size:18px;

}


/* BUTTON */

.nav-btn{

height:46px;

padding:0 18px;

font-size:13px;

}

}





.nav-logo{

display:flex;

align-items:center;

height:100%;

}

.navbar-logo{

height:90px;
width:auto;

display:block;

object-fit:contain;

filter:
drop-shadow(0 8px 20px rgba(110,168,255,.15));

transition:
transform .4s ease,
filter .4s ease;

}

.navbar-logo:hover{

transform:scale(1.04);

filter:
drop-shadow(0 12px 30px rgba(184,146,255,.25));

}








/* ========================= */
/* PROJECT DROPDOWN */
/* ========================= */
/* ========================= */
/* MOBILE DROPDOWN */
/* ========================= */

.mobile-dropdown{

    position:absolute;

    top:90px;

    right:15px;

    width:min(85vw,320px);

    background:white;

    border-radius:24px;

    padding:18px;

    display:flex;

    flex-direction:column;

    gap:4px;

    box-shadow:
    0 20px 50px rgba(15,23,42,.12);

    opacity:0;

    visibility:hidden;

    transform:translateY(-15px);

    transition:.35s ease;

    z-index:99999;

}

.mobile-dropdown.show{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

/* MAIN LINKS */

.mobile-dropdown > a{

    text-decoration:none;

    color:#111827;

    font-size:16px;

    font-weight:500;

    padding:14px 16px;

    border-radius:14px;

    transition:.3s;

}

.mobile-dropdown > a:hover{

    background:
    linear-gradient(
    90deg,
    rgba(110,168,255,.12),
    rgba(184,146,255,.12)
    );

}

/* PROJECTS */

.mobile-projects{

    width:100%;

}

.mobile-project-toggle{

    width:100%;

    border:none;

    background:none;

    outline:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 16px;

    cursor:pointer;

    border-radius:14px;

    color:#111827;

    font-size:16px;

    font-weight:500;

    transition:.3s;

}

.mobile-project-toggle:hover{

    background:
    linear-gradient(
    90deg,
    rgba(110,168,255,.12),
    rgba(184,146,255,.12)
    );

}

.project-arrow{

    font-size:20px;

    transition:.3s;

}

.project-arrow.rotate{

    transform:rotate(180deg);

}

.mobile-project-menu{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

    display:flex;

    flex-direction:column;

    margin-left:12px;

}

.mobile-project-menu.show{

    max-height:250px;

}

.mobile-project-menu a{

    text-decoration:none;

    color:#6B7280;

    font-size:14px;

    padding:10px 16px;

    border-left:2px solid rgba(110,168,255,.25);

    transition:.3s;

}

.mobile-project-menu a:hover{

    color:#111827;

    border-left-color:#6EA8FF;

}

/* MOBILE */

@media(max-width:991px){

    .nav-links{

        display:none;

    }

    .nav-btn{

        display:none;

    }

    .menu-btn{

        display:flex;

        width:46px;

        height:46px;

        justify-content:center;

        align-items:center;

        font-size:24px;

        cursor:pointer;

    }

}

/* DESKTOP */

@media(min-width:992px){

    .mobile-dropdown{

        display:none;

    }

    .menu-btn{

        display:none;

    }

}





.project-dropdown{
    position:relative;
}

.project-menu{

    position:absolute;

    top:100%;

    left:50%;

    transform:translateX(-50%);

    min-width:220px;

    background:#fff;

    border-radius:16px;

    padding:10px;

    box-shadow:0 20px 40px rgba(0,0,0,.08);

    display:none;

    flex-direction:column;

    z-index:999999;

}

.project-menu a{

    display:block;

    text-decoration:none;

    color:#374151;

    padding:12px 16px;

    border-radius:10px;

}

.project-menu a:hover{

    background:#f3f4f6;

}

.project-dropdown:hover .project-menu{

    display:flex;

}



































.about-hero{

position:relative;

width:100%;

height:100vh;

overflow:hidden;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

background:url("../assests/partners-home.png");

background-size:cover;

background-position:center;

}

/* DARK OVERLAY */

.about-overlay{

position:absolute;

inset:0;

background:

linear-gradient(
180deg,
rgba(5,8,20,.45),
rgba(5,8,20,.65)
);

z-index:1;

}

/* CONTENT */

.about-inner{

position:relative;

z-index:3;

max-width:1200px;

padding:0 30px;

}

/* PILL */

.about-pill{

display:inline-block;

padding:14px 30px;

border:1px solid rgba(255,255,255,.18);

backdrop-filter:blur(15px);

border-radius:999px;

color:white;

font-family:Inter;

font-size:13px;

letter-spacing:3px;

margin-bottom:40px;

}

/* HEADING */

.hero-title{

font-family:"Cormorant Garamond",serif;

font-size:110px;

font-weight:600;

line-height:.95;

color:white;

min-height:240px;

}

/* TEXT */

.hero-text{

max-width:900px;

margin:auto;

font-family:Inter;

font-size:22px;

line-height:1.8;

color:rgba(255,255,255,.85);

margin-top:30px;

}

/* BUTTONS */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:50px;

}

.btn-primary{

padding:22px 42px;

border-radius:999px;

background:white;

color:#111827;

text-decoration:none;

font-family:Inter;

font-weight:600;

}

.btn-secondary{

padding:22px 42px;

border-radius:999px;

border:1px solid rgba(255,255,255,.2);

backdrop-filter:blur(20px);

background:rgba(255,255,255,.08);

color:white;

text-decoration:none;

font-family:Inter;

font-weight:600;

}

/* PARTICLES */

.floating-particles span{

position:absolute;

width:8px;

height:8px;

border-radius:50%;

background:white;

opacity:.4;

animation:float 8s infinite ease-in-out;

z-index:2;

}

.floating-particles span:nth-child(1){

top:15%;

left:10%;

}

.floating-particles span:nth-child(2){

top:25%;

right:20%;

}

.floating-particles span:nth-child(3){

top:70%;

left:18%;

}

.floating-particles span:nth-child(4){

top:80%;

right:12%;

}

.floating-particles span:nth-child(5){

top:45%;

left:70%;

}

.floating-particles span:nth-child(6){

top:20%;

left:50%;

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-25px);

}

}

/* FOG */

.bottom-fog{

position:absolute;

left:0;

right:0;

bottom:0;

height:220px;

background:

linear-gradient(
to top,
rgba(255,255,255,.95),
transparent
);

z-index:2;

}

/* RESPONSIVE */

@media(max-width:991px){

.hero-title{

font-size:60px;

min-height:auto;

}

.hero-text{

font-size:18px;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

}





















/* ================================= */
/* STATS SECTION */
/* ================================= */

.stats-section{

width:100%;

height:70vh;

padding:40px 6%;

display:grid;

grid-template-columns:45% 55%;

align-items:center;

gap:60px;

overflow:hidden;

background:
linear-gradient(
180deg,
#ffffff 0%,
#f9fbfc 20%,
#f1f5f8 45%,
#eaf0f5 70%,
#e8eff5 100%
);

}

/* ================================= */
/* IMAGE SIDE */
/* ================================= */

/* ================================= */
/* IMAGE LAYOUT */
/* ================================= */

.stats-images{

position:relative;

height:500px;

display:grid;

grid-template-columns:50% 50%;

gap:20px;

}

/* ================================= */
/* BIG LEFT IMAGE */
/* ================================= */

.img-large{

width:100%;

height:100%;

border-radius:30px;

overflow:hidden;

box-shadow:
0 25px 60px rgba(110,168,255,.12);

}

/* ================================= */
/* RIGHT COLUMN */
/* ================================= */

.stats-right{

display:grid;

grid-template-rows:1fr 1fr;

gap:20px;

height:100%;

}

.img-left,
.img-right{

width:100%;

height:100%;

border-radius:30px;

overflow:hidden;

box-shadow:
0 20px 50px rgba(110,168,255,.10);

}

/* ================================= */
/* IMAGES */
/* ================================= */

.stats-images img{

width:100%;

height:100%;

object-fit:cover;

transition:
transform .8s ease,
filter .8s ease;

}

.img-large:hover img,
.img-left:hover img,
.img-right:hover img{

transform:scale(1.08);

filter:brightness(.95);

}

/* ================================= */
/* DECORATIVE SHAPE */
/* ================================= */

.stats-pattern{

position:absolute;

left:180px;

top:180px;

width:140px;

height:140px;

border-radius:50%;

background:
repeating-conic-gradient(
from 180deg,
rgba(110,168,255,.12) 0deg 10deg,
transparent 10deg 20deg
);

z-index:1;

}

/* ================================= */
/* CONTENT SIDE */
/* ================================= */

.stats-content{

max-width:700px;

}

.stats-tag{

display:inline-block;

margin-bottom:15px;

font-size:12px;

font-weight:700;

letter-spacing:4px;

color:#6EA8FF;

font-family:Inter;

}

.stats-content h2{

font-family:
"Cormorant Garamond",
serif;

font-size:56px;

line-height:.95;

font-weight:700;

color:#111827;

margin-bottom:20px;

}

.stats-content p{

font-family:Inter;

font-size:15px;

line-height:1.9;

color:#6B7280;

margin-bottom:15px;

max-width:620px;

}

/* ================================= */
/* STATS */
/* ================================= */

.stats-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

margin-top:25px;

padding-top:25px;

border-top:1px solid rgba(110,168,255,.15);

}

.stat-box{

background:
rgba(255,255,255,.65);

backdrop-filter:blur(20px);

border-radius:24px;

padding:20px;

text-align:center;

box-shadow:
0 10px 30px rgba(110,168,255,.08);

}

.stat-box h3{

font-family:
"Cormorant Garamond",
serif;

font-size:48px;

font-weight:700;

margin-bottom:8px;

background:
linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.stat-box span{

font-family:Inter;

font-size:13px;

color:#6B7280;

}

/* ================================= */
/* TABLET */
/* ================================= */

@media(max-width:991px){

.stats-section{

height:auto;

grid-template-columns:1fr;

padding:80px 8%;

gap:50px;

}

.stats-images{

height:450px;

}

.img-large{

left:0;

width:100%;

height:240px;

}

.img-left{

left:0;

top:290px;

width:45%;

}

.img-right{

right:0;

left:auto;

top:290px;

width:45%;

}

.stats-pattern{

display:none;

}

.stats-content{

text-align:center;

max-width:100%;

}

.stats-content h2{

font-size:46px;

}

.stats-grid{

grid-template-columns:1fr;

}

}

/* ================================= */
/* MOBILE */
/* ================================= */

@media(max-width:576px){

.stats-images{

height:380px;

}

.img-large{

height:200px;

border-radius:60px;

}

.img-left{

height:80px;

}

.img-right{

height:80px;

}

.stats-content h2{

font-size:36px;

}

.stats-content p{

font-size:14px;

line-height:1.8;

}

.stat-box h3{

font-size:38px;

}

}






















.partner-section{

width:100%;

min-height:100vh;

padding:100px 6%;

display:flex;

justify-content:center;

align-items:center;

background:
linear-gradient(
180deg,
#e8eff5 0%,
#edf3f8 40%,
#ffffff 100%
);

}

/* CONTAINER */

.partner-container{

width:100%;

max-width:1500px;

height:85vh;

display:grid;

grid-template-columns:42% 58%;

background:white;

border-radius:40px;

overflow:hidden;

box-shadow:
0 30px 80px rgba(15,23,42,.08);

}

/* LEFT */

.partner-left{

position:relative;

overflow:hidden;

padding:70px;

display:flex;

align-items:center;

justify-content:center;

background:
linear-gradient(
135deg,
#dfeaf4,
#edf3f8,
#ffffff
);

}

.orbit-wrapper{

position:absolute;

width:650px;

height:650px;

left:50%;

top:50%;

transform:
translate(-50%,-50%);

}

.orbit{

position:absolute;

left:50%;

top:50%;

transform:
translate(-50%,-50%);

border-radius:50%;

border:1px solid
rgba(110,168,255,.18);

}

.orbit-1{

width:220px;
height:220px;

}

.orbit-2{

width:340px;
height:340px;

}

.orbit-3{

width:480px;
height:480px;

}

.planet{

position:absolute;

left:50%;
top:50%;

border-radius:50%;

background:
linear-gradient(
135deg,
#6EA8FF,
#B892FF
);

}

.planet-1{

width:14px;
height:14px;

animation:
orbitOne 8s linear infinite;

}

.planet-2{

width:18px;
height:18px;

animation:
orbitTwo 12s linear infinite;

}

.planet-3{

width:24px;
height:24px;

animation:
orbitThree 16s linear infinite;

}

.partner-left-content{

position:relative;

z-index:5;

max-width:450px;

}

.partner-label{

font-size:12px;

font-weight:700;

letter-spacing:4px;

color:#6EA8FF;

display:block;

margin-bottom:20px;

}

.partner-left-content h2{

font-family:
"Cormorant Garamond",
serif;

font-size:50px;

line-height:.95;

color:#111827;

margin-bottom:20px;

}

.partner-left-content p{

font-size:16px;

line-height:1.9;

color:#64748b;

margin-bottom:35px;

}

.partner-benefits{

display:flex;

flex-direction:column;

gap:15px;

}

.benefit{

display:flex;

align-items:center;

gap:12px;

font-size:15px;

color:#475569;

}

.benefit span{

width:40px;

height:40px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:
linear-gradient(
135deg,
#6EA8FF,
#B892FF
);

color:white;

font-size:13px;

font-weight:700;

}

/* RIGHT */

.partner-right{

padding:70px;

display:flex;

flex-direction:column;

justify-content:center;

background:white;

}

.form-heading span{

font-size:12px;

font-weight:700;

letter-spacing:4px;

color:#6EA8FF;

display:block;

margin-bottom:10px;

}

.form-heading h3{

font-family:
"Cormorant Garamond",
serif;

font-size:35px;

color:#111827;

margin-bottom:30px;

}

.form-row{

display:grid;

grid-template-columns:1fr 1fr;

gap:25px;

margin-bottom:25px;

}

.partner-form input,
.partner-form select,
.partner-form textarea{

width:100%;

padding:18px 0;

border:none;

background:transparent;

border-bottom:2px solid #e5e7eb;

font-size:15px;

outline:none;

}

.partner-form input:focus,
.partner-form select:focus,
.partner-form textarea:focus{

border-color:#6EA8FF;

}

.partner-form textarea{

height:140px;

resize:none;

margin-bottom:30px;

}

.partner-form button{

padding:18px 42px;

border:none;

border-radius:999px;

background:
linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

color:white;

font-weight:600;

cursor:pointer;

}

/* ANIMATIONS */

@keyframes orbitOne{

from{
transform:
rotate(0deg)
translateX(110px);
}

to{
transform:
rotate(360deg)
translateX(110px);
}

}

@keyframes orbitTwo{

from{
transform:
rotate(0deg)
translateX(170px);
}

to{
transform:
rotate(-360deg)
translateX(170px);
}

}

@keyframes orbitThree{

from{
transform:
rotate(0deg)
translateX(240px);
}

to{
transform:
rotate(360deg)
translateX(240px);
}

}



/* ================================= */
/* RESPONSIVE */
/* ================================= */

@media (max-width:1200px){

.partner-container{

height:auto;
min-height:850px;

grid-template-columns:45% 55%;

}

.partner-left{

padding:50px;

}

.partner-right{

padding:50px;

}

.partner-left-content h2{

font-size:42px;

}

.orbit-wrapper{

width:500px;
height:500px;

}

.orbit-1{

width:180px;
height:180px;

}

.orbit-2{

width:280px;
height:280px;

}

.orbit-3{

width:400px;
height:400px;

}

@keyframes orbitOne{

from{
transform:rotate(0deg) translateX(90px);
}

to{
transform:rotate(360deg) translateX(90px);
}

}

@keyframes orbitTwo{

from{
transform:rotate(0deg) translateX(140px);
}

to{
transform:rotate(-360deg) translateX(140px);
}

}

@keyframes orbitThree{

from{
transform:rotate(0deg) translateX(200px);
}

to{
transform:rotate(360deg) translateX(200px);
}

}

}

/* ================================= */
/* TABLET */
/* ================================= */

@media (max-width:991px){

.partner-section{

padding:80px 5%;

}

.partner-container{

grid-template-columns:1fr;

height:auto;

}

.partner-left{

padding:60px 40px;
min-height:500px;

}

.partner-right{

padding:50px 40px;

}

.partner-left-content{

max-width:100%;
text-align:center;

}

.partner-left-content h2{

font-size:46px;

}

.partner-left-content p{

font-size:15px;

}

.partner-benefits{

max-width:400px;
margin:auto;

}

.benefit{

justify-content:center;

}

.form-heading{

text-align:center;

}

.orbit-wrapper{

width:450px;
height:450px;

}

.orbit-1{

width:160px;
height:160px;

}

.orbit-2{

width:250px;
height:250px;

}

.orbit-3{

width:350px;
height:350px;

}

.form-row{

grid-template-columns:1fr;

gap:20px;

}

}

/* ================================= */
/* MOBILE */
/* ================================= */

@media (max-width:768px){

.partner-section{

padding:70px 20px;

}

.partner-container{

border-radius:25px;

}

.partner-left{

padding:40px 25px;
min-height:450px;

}

.partner-right{

padding:35px 25px;

}

.partner-label{

font-size:11px;
letter-spacing:3px;

}

.partner-left-content h2{

font-size:38px;

}

.partner-left-content p{

font-size:14px;
line-height:1.8;

}

.partner-benefits{

gap:12px;

}

.benefit{

font-size:14px;

}

.benefit span{

width:34px;
height:34px;

font-size:11px;

}

.form-heading h3{

font-size:30px;

}

.partner-form input,
.partner-form select,
.partner-form textarea{

font-size:14px;

}

.partner-form button{

width:100%;

}

.orbit-wrapper{

width:320px;
height:320px;

}

.orbit-1{

width:120px;
height:120px;

}

.orbit-2{

width:180px;
height:180px;

}

.orbit-3{

width:250px;
height:250px;

}

.planet-1{

width:10px;
height:10px;

}

.planet-2{

width:14px;
height:14px;

}

.planet-3{

width:18px;
height:18px;

}

}

/* ================================= */
/* SMALL PHONES */
/* ================================= */

@media (max-width:480px){

.partner-section{

padding:60px 15px;

}

.partner-left{

padding:35px 20px;

}

.partner-right{

padding:30px 20px;

}

.partner-left-content h2{

font-size:32px;

}

.partner-left-content p{

font-size:13px;

}

.form-heading h3{

font-size:26px;

}

.partner-form textarea{

height:120px;

}

.orbit-wrapper{

width:250px;
height:250px;

}

.orbit-1{

width:90px;
height:90px;

}

.orbit-2{

width:140px;
height:140px;

}

.orbit-3{

width:200px;
height:200px;

}

}















.partner-right{

    width:100%;

}

.partner-form-card{

    background:white;

    border-radius:32px;

    padding:40px;

    border:1px solid #E5E7EB;

    box-shadow:
    0 20px 50px rgba(15,23,42,.05);

}

.partner-tag{

    display:inline-block;

    margin-bottom:15px;

    font-family:Inter;

    font-size:11px;

    font-weight:700;

    letter-spacing:4px;

    color:#6EA8FF;

}

.partner-title{

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:48px;

    line-height:.95;

    font-weight:700;

    color:#111827;

    margin-bottom:15px;

}

.partner-desc{

    font-family:Inter;

    font-size:15px;

    line-height:1.8;

    color:#6B7280;

    margin-bottom:30px;

}

.partner-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.partner-row{

    display:flex;

    gap:18px;

}

.partner-group{

    width:100%;

    display:flex;

    flex-direction:column;

}

.partner-group label{

    font-family:Inter;

    font-size:14px;

    font-weight:600;

    color:#111827;

    margin-bottom:10px;

}

.partner-group input,
.partner-group select{

    height:58px;

    padding:0 18px;

    border-radius:18px;

    border:1px solid #E5E7EB;

    background:#FAFAFA;

    font-family:Inter;

    font-size:14px;

    outline:none;

    transition:.3s;

}

.partner-group textarea{

    min-height:130px;

    padding:18px;

    border-radius:18px;

    border:1px solid #E5E7EB;

    background:#FAFAFA;

    resize:none;

    font-family:Inter;

    font-size:14px;

    outline:none;

    transition:.3s;

}

.partner-group input:focus,
.partner-group select:focus,
.partner-group textarea:focus{

    border-color:#6EA8FF;

    background:white;

    box-shadow:
    0 0 0 4px rgba(110,168,255,.10);

}

.partner-submit{

    height:60px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    font-family:Inter;

    font-size:15px;

    font-weight:600;

    color:white;

    background:
    linear-gradient(
    135deg,
    #6EA8FF,
    #B892FF
    );

    transition:.35s;

}

.partner-submit:hover{

    transform:translateY(-2px);

    box-shadow:
    0 18px 40px rgba(110,168,255,.25);

}

.gradient{

    background:
    linear-gradient(
    135deg,
    #6EA8FF,
    #B892FF
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/* MOBILE */

@media(max-width:991px){

    .partner-form-card{

        padding:25px;

    }

    .partner-row{

        flex-direction:column;

    }

    .partner-title{

        font-size:36px;

    }

}



























  
.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;

    }

}














.nav-links a{

position:relative;

text-decoration:none;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:100%;

height:2px;

background:
linear-gradient(
90deg,
#6EA8FF,
#B892FF
);

transform:scaleX(0);

transform-origin:left;

transition:.35s ease;

}

.nav-links a:hover::after{

transform:scaleX(1);

}

.nav-links a.active::after{

transform:scaleX(1);

}








.partner-right{

    position: relative;

    height: 80vh;

    overflow-y: auto;

    overflow-x: hidden;

    padding: 55px 50px;

    background:
    linear-gradient(
        135deg,
        #ffffff 0%,
        #fbfcfe 100%
    );

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

    border-radius: 0 40px 40px 0;

}

/* Hide scrollbar */

.partner-right::-webkit-scrollbar{

    width: 5px;

}

.partner-right::-webkit-scrollbar-thumb{

    background:
    linear-gradient(
        135deg,
        #6EA8FF,
        #B892FF
    );

    border-radius: 20px;

}

/* Decorative Glow */

.partner-right::before{

    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    top: -100px;

    right: -100px;

    border-radius: 50%;

    background:
    radial-gradient(
        circle,
        rgba(110,168,255,.15),
        transparent 70%
    );

    filter: blur(50px);

}

.partner-right::after{

    content: "";

    position: absolute;

    width: 200px;

    height: 200px;

    bottom: -80px;

    left: -80px;

    border-radius: 50%;

    background:
    radial-gradient(
        circle,
        rgba(184,146,255,.12),
        transparent 70%
    );

    filter: blur(50px);

}

/* Header */

.pj-header{

    position: relative;

    z-index: 5;

    margin-bottom: 25px;

}

.pj-tag{

    display: block;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

    color: #6EA8FF;

    margin-bottom: 12px;

}

.pj-title{

    font-family:
    "Cormorant Garamond",
    serif;

    font-size: 48px;

    line-height: .95;

    color: #0f172a;

    margin-bottom: 18px;

}

.pj-desc{

    font-size: 15px;

    line-height: 1.8;

    color: #64748b;

}

/* Timeline */

.pj-timeline{

    position: relative;

    z-index: 5;

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.pj-card{

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px 20px;

    border-radius: 24px;

    background: rgba(255,255,255,.8);

    backdrop-filter: blur(10px);

    border:
    1px solid rgba(110,168,255,.12);

    transition: .35s;

    cursor: pointer;

}

.pj-card:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 15px 35px
    rgba(110,168,255,.12);

    border-color:
    rgba(110,168,255,.25);

}

.pj-number{

    width: 48px;

    height: 48px;

    flex-shrink: 0;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
    linear-gradient(
        135deg,
        #6EA8FF,
        #B892FF
    );

    color: white;

    font-size: 16px;

    font-weight: 700;

    box-shadow:
    0 10px 25px
    rgba(110,168,255,.25);

}

.pj-content{

    flex: 1;

}

.pj-content h4{

    font-size: 22px;

    color: #0f172a;

    margin-bottom: 5px;

}

.pj-content p{

    font-size: 14px;

    line-height: 1.6;

    color: #64748b;

}

/* Button */

.pj-btn{

    margin-top:30px;

    align-self:flex-start;

    padding:14px 26px;

    border-radius:999px;

    text-decoration:none;

    background:white;

    color:#111827;

    border:1px solid
    #e5e7eb;

    font-size:14px;

    font-weight:600;

    transition:.3s;

}

.pj-btn:hover{

    background:#f8fafc;

    border-color:#cbd5e1;

}

/* Tablet */

@media(max-width:991px){

    .partner-right{

        height: auto;

        padding: 45px 35px;

        border-radius: 0 0 40px 40px;

    }

    .pj-title{

        font-size: 40px;

    }

}

/* Mobile */

@media(max-width:768px){

    .partner-right{

        padding: 35px 20px;

    }

    .pj-title{

        font-size: 34px;

    }

    .pj-card{

        padding: 15px;

    }

    .pj-number{

        width: 42px;

        height: 42px;

        font-size: 14px;

    }

    .pj-content h4{

        font-size: 18px;

    }

}




























/* ========================= */
/* 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;

}

}





















/* ========================= */
/* PARTNER FORM */
/* ========================= */

.alliance-panel{

    width:100%;

    padding:50px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.alliance-tag{

    font-size:11px;

    letter-spacing:4px;

    font-weight:700;

    color:#6EA8FF;

    display:block;

    margin-bottom:10px;

}

.alliance-title{

    font-family:
    "Cormorant Garamond",
    serif;

    font-size:56px;

    line-height:.95;

    color:#111827;

    margin-bottom:12px;

}

.alliance-subtitle{

    font-size:15px;

    color:#64748B;

    line-height:1.8;

    max-width:600px;

    margin-bottom:30px;

}

.alliance-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.alliance-row{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

}

.alliance-form input,
.alliance-form textarea{

    width:100%;

    border:none;

    border-bottom:2px solid #E5E7EB;

    background:transparent;

    padding:14px 5px;

    font-size:15px;

    outline:none;

}

.alliance-form textarea{

    height:90px;

    resize:none;

}

.alliance-form input:focus,
.alliance-form textarea:focus{

    border-color:#6EA8FF;

}

/* ========================= */
/* PARTNERSHIP CARDS */
/* ========================= */

.alliance-types{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:14px;

    margin-top:10px;

}

.alliance-type{

    height:75px;

    border-radius:22px;

    background:white;

    border:1px solid #E5E7EB;

    display:flex;

    align-items:center;

    gap:14px;

    padding:0 20px;

    cursor:pointer;

    transition:.35s;

    color:#111827;

}

.alliance-type i{

    font-size:20px;

    color:#6EA8FF;

}

.alliance-type span{

    font-size:14px;

    font-weight:600;

}

.alliance-type:hover{

    transform:translateY(-3px);

    border-color:#6EA8FF;

    box-shadow:
    0 15px 35px rgba(110,168,255,.15);

}

.alliance-type.active{

    background:
    linear-gradient(
    135deg,
    rgba(110,168,255,.12),
    rgba(184,146,255,.12)
    );

    border-color:#6EA8FF;

}

/* BUTTON */

.alliance-submit{

    width:260px;

    height:58px;

    border:none;

    border-radius:999px;

    background:
    linear-gradient(
    135deg,
    #6EA8FF,
    #B892FF
    );

    color:white;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    margin-top:10px;

    transition:.35s;

}

.alliance-submit:hover{

    transform:translateY(-3px);

    box-shadow:
    0 18px 40px rgba(110,168,255,.25);

}

/* MOBILE */

@media(max-width:991px){

    .alliance-panel{

        padding:30px 25px;

    }

    .alliance-title{

        font-size:35px;

    }

    .alliance-row{

        grid-template-columns:1fr;

    }

    .alliance-types{

        grid-template-columns:1fr;

    }

    .alliance-submit{

        width:100%;

    }

}
.partner-type-row{

    margin-top:5px;

}

.partner-type-label{

    display:block;

    font-size:13px;

    font-weight:600;

    color:#64748B;

    margin-bottom:12px;

}

.partner-pills{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

}

.partner-pill{

    border:none;

    cursor:pointer;

    height:40px;

    padding:0 18px;

    border-radius:999px;

    background:#F8FAFC;

    color:#475569;

    font-size:13px;

    font-weight:600;

    transition:.3s;

    border:1px solid #E2E8F0;

}

.partner-pill:hover{

    transform:translateY(-2px);

    border-color:#6EA8FF;

}

.partner-pill.active{

    color:white;

    border:none;

    background:
    linear-gradient(
    135deg,
    #6EA8FF,
    #B892FF
    );

}











::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#F8FAFC;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(180deg, #6EA8FF, #B892FF);
}
