/* =========================
GLOBAL
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#ffffff;
color:#0b1f3a;
overflow-x:hidden;
line-height:1.7;
padding-top:90px;
}

/* =========================
NAVBAR
========================= */

header{
background:#ffffff;
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
border-bottom:1px solid #e6eaf0;
}

.container{
width:90%;
margin:auto;

display:flex;
justify-content:space-between;
align-items:center;

padding:15px 0;
}

.logo-img{
width:200px;
height:auto;
display:block;
}

/* NAV */

nav{
display:flex;
align-items:center;
gap:30px;
}

nav a{
text-decoration:none;
color:#0b1f3a;
font-size:15px;
font-weight:700;
transition:.3s;
}

nav a:hover,
nav a.active{
color:#1f6ed4;
}

/* =========================
DROPDOWN
========================= */

.dropdown{
position:relative;
}

.dropbtn{
background:none;
border:none;

font-size:15px;
font-weight:700;

cursor:pointer;

color:#0b1f3a;

font-family:'Poppins',sans-serif;

display:flex;
align-items:center;
gap:8px;
}

.dropdown-content{
display:none;

position:absolute;
top:42px;
left:0;

background:white;

min-width:240px;

border-radius:14px;

overflow:hidden;

box-shadow:0 10px 25px rgba(0,0,0,0.08);

z-index:1000;
}

.dropdown.active .dropdown-content{
display:block;
}

.dropdown-content a{
display:block;

padding:13px 16px;

text-decoration:none;

color:#0b1f3a;

font-weight:500;

transition:.3s;
}

.dropdown-content a:hover{
background:#eef4fa;
color:#1f6ed4;
}

/* =========================
HERO
========================= */

.partnerships-hero{

width:100%;

min-height:500px;

background:linear-gradient(
135deg,
#0b1f3a,
#163b73
);

display:flex;
justify-content:center;
align-items:center;

text-align:center;

padding:120px 20px 90px;

position:relative;

overflow:hidden;
}

/* GLOW EFFECT */

.partnerships-hero::before{
content:"";

position:absolute;

width:350px;
height:350px;

background:rgba(255,255,255,0.05);

border-radius:50%;

left:-120px;
bottom:-120px;
}

.partnerships-hero::after{
content:"";

position:absolute;

width:300px;
height:300px;

background:rgba(255,255,255,0.04);

border-radius:50%;

right:-100px;
top:-100px;
}

/* HERO CONTENT */

.hero-content{
max-width:900px;
position:relative;
z-index:2;
}

.hero-content h1{

font-size:72px;

font-weight:800;

line-height:1.1;

color:#ffffff;

margin-bottom:24px;
}

.hero-content p{

color:#dce6f5;

font-size:22px;

line-height:1.9;

max-width:850px;

margin:auto;
}

/* =========================
SECTIONS
========================= */

section{
padding:90px 8%;
text-align:center;
}

.section-title h2{
font-size:42px;
font-weight:800;
margin-bottom:45px;
color:#0b1f3a;
}

/* =========================
INTRO
========================= */

.intro-section p{
max-width:900px;
margin:auto;

font-size:20px;
line-height:2;

color:#5f7185;
}

/* =========================
GRID
========================= */

.grid{
display:grid;

grid-template-columns:
repeat(auto-fit,minmax(320px,1fr));

gap:35px;

padding:0 8% 90px;
}

/* =========================
CARDS
========================= */

.card{
background:white;

padding:40px;

border-radius:24px;

box-shadow:0 10px 30px rgba(0,0,0,0.06);

transition:.35s ease;

text-decoration:none;

color:#0b1f3a;

display:flex;
flex-direction:column;

align-items:center;
justify-content:center;

text-align:center;
}

.card:hover{
transform:translateY(-10px);

box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.card h3{
font-size:28px;

margin-bottom:16px;

font-weight:700;
}

.card p{
font-size:16px;

line-height:1.8;

color:#5f7185;
}

/* =========================
ICON
========================= */

.icon{
width:72px;
height:72px;

background:#eef4fa;

color:#0b1f3a;

border-radius:20px;

display:flex;
align-items:center;
justify-content:center;

margin-bottom:22px;

font-size:28px;

box-shadow:0 8px 22px rgba(0,0,0,0.05);
}

/* =========================
BUBBLES
========================= */

.bubble-grid{
display:flex;

justify-content:center;
align-items:center;

gap:30px;

flex-wrap:wrap;
}

.bubble{
width:180px;
height:180px;

background:white;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

text-align:center;

padding:20px;

font-weight:700;

color:#0b1f3a;

box-shadow:0 12px 30px rgba(0,0,0,0.06);

border:1px solid #e6eaf0;

transition:.35s;
}

.bubble:hover{
transform:translateY(-10px);

box-shadow:0 18px 40px rgba(0,0,0,0.12);
}

/* =========================
PILLS
========================= */

.pill-grid{
display:flex;

flex-wrap:wrap;

justify-content:center;

gap:18px;
}

.pill{
background:#eef4fa;

color:#0b1f3a;

padding:15px 24px;

border-radius:50px;

font-weight:600;

box-shadow:0 6px 15px rgba(0,0,0,0.05);

transition:.3s;
}

.pill:hover{
background:#0b1f3a;

color:white;

transform:translateY(-5px);
}

/* =========================
CTA
========================= */

.cta{
background:linear-gradient(
135deg,
#1f3b73,
#0b1f3a
);

color:white;
}

.cta h2{
font-size:42px;

margin-bottom:18px;

font-weight:800;
}

.cta p{
max-width:700px;

margin:0 auto 30px;

color:#d6d6d6;

line-height:1.9;

font-size:17px;
}

/* BUTTON */

.btn{
display:inline-block;

margin-top:15px;

padding:13px 30px;

border-radius:10px;

background:white;

color:#0b1f3a;

text-decoration:none;

font-size:15px;

font-weight:700;

transition:.3s;
}

.btn:hover{
transform:translateY(-4px);
}

/* =========================
CONTACT ICONS
========================= */

.contact-icons{
display:flex;

justify-content:center;
align-items:center;

gap:16px;

margin-top:35px;

flex-wrap:wrap;
}

.contact-icons a{
width:50px;
height:50px;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

background:rgba(255,255,255,0.15);

backdrop-filter:blur(10px);

color:white;

font-size:18px;

text-decoration:none;

transition:.3s;
}

.contact-icons a:hover{
background:white;

color:#16324f;

transform:translateY(-5px);
}

/* =========================
FOOTER
========================= */

.footer{
padding:28px 0;

text-align:center;

background:transparent;
}

.footer p{
margin:0;

font-size:14px;

font-weight:500;

color:#0b1f3a;

}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

.container{
flex-direction:column;
gap:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.partnerships-hero{
min-height:420px;
padding:100px 20px 70px;
}

.hero-content h1{
font-size:42px;
}

.hero-content p{
font-size:16px;
line-height:1.8;
}

.section-title h2{
font-size:34px;
}

.intro-section p{
font-size:17px;
}

.grid{
grid-template-columns:1fr;
}

.card{
padding:35px 25px;
}

.bubble{
width:150px;
height:150px;
font-size:14px;
}

.cta h2{
font-size:32px;
}

}

.footer p{
 color:#0b1f3a;
 !important;
}
