/* =========================
RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Poppins',sans-serif;
background:#fff;
color:#0b1f3a;
line-height:1.7;
}

/* =========================
NAVBAR
========================= */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:#fff;
position:sticky;
top:0;
z-index:1000;
box-shadow:0 2px 12px rgba(0,0,0,.05);
}

.logo-img{
width:190px;
height:auto;
display:block;
}

nav{
display:flex;
align-items:center;
gap:25px;
}

nav a{
text-decoration:none;
color:#0b1f3a;
font-weight:800;
transition:.3s;
}

nav a:hover{
color:#1f6ed4;
}

/* =========================
DROPDOWN
========================= */

.dropdown{
position:relative;
}

.dropbtn{
background:none;
border:none;
cursor:pointer;
font-family:'Poppins',sans-serif;
font-size:15px;
font-weight:800;
color:#0b1f3a;
display:flex;
align-items:center;
gap:8px;
}

.dropbtn.active{
color:#1f6ed4;
}

.dropdown-content{
display:none;
position:absolute;
top:40px;
left:0;
background:#fff;
min-width:250px;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 25px rgba(0,0,0,.08);
z-index:1000;
}

.dropdown.active .dropdown-content{
display:block;
}

.dropdown-content a{
display:block;
padding:14px 18px;
text-decoration:none;
color:#0b1f3a;
font-weight:500;
}

.dropdown-content a:hover{
background:#eef5fc;
color:#1f6ed4;
}

/* =========================
HERO SECTION
========================= */

.page-hero{
padding:80px 20px;
}

.finance-hero-card{

max-width:1200px;
margin:auto;

display:flex;
align-items:center;
justify-content:space-between;

gap:70px;

padding:70px;

background:#f5f8fc;
border:1px solid #e4edf7;

border-radius:35px;

box-shadow:
0 20px 60px rgba(31,110,212,.08);
}

/* LEFT SIDE */

.finance-left{
flex:1;
}

.hero-label{

display:inline-block;

padding:14px 28px;

background:white;

border:1px solid #dbe8f7;

border-radius:60px;

font-size:18px;
font-weight:700;

letter-spacing:3px;

color:#1f6ed4;

margin-bottom:30px;
}

.premium-title{

font-size:68px;

font-weight:800;

line-height:1;

color:#16324f;

letter-spacing:-2px;

margin-bottom:12px;
}

.premium-subtitle{

font-size:34px;

font-weight:800;

color:#16324f;

margin-bottom:18px;
}

.premium-line{

width:170px;
height:5px;

border-radius:50px;

background:linear-gradient(
90deg,
#1f6ed4,
#7db8ff
);

margin-bottom:35px;
}

.hero-description{
  
max-width:550px;

font-size:17px;

line-height:1.9;

color:#5f6b7a;

margin-bottom:35px;
}

/* BUTTON */

.btn-primary{

display:inline-block;

padding:16px 38px;

background:#16324f;

color:white;

text-decoration:none;

border-radius:14px;

font-weight:600;

transition:.3s;
}

.btn-primary:hover{

background:#244b73;

transform:translateY(-3px);
}

/* RIGHT SIDE */

.finance-right{

width:450px;

position:relative;
}

.finance-right img{
width:100%;
height:300px;
object-fit:cover;
border-radius:35px;
border:none;

box-shadow:
0 25px 60px rgba(0,0,0,.12);
}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

.finance-hero-card{

flex-direction:column;

text-align:center;

padding:40px 25px;

gap:40px;
}

.finance-right{

width:100%;
max-width:340px;
}

.premium-title{

font-size:46px;
}

.premium-subtitle{

font-size:24px;
}

.premium-line{

margin:0 auto 25px;
}

.hero-description{

margin:auto auto 35px;
}
}

/* =========================
SERVICES
========================= */

.services{
padding:100px 8%;
background:#f7fbff;
}

.services-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.service-card{
background:#fff;
padding:40px 30px;
border-radius:25px;
text-align:center;
box-shadow:0 12px 35px rgba(0,0,0,.05);
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.icon{
width:85px;
height:85px;
margin:0 auto 25px;
border-radius:22px;
display:flex;
align-items:center;
justify-content:center;
font-size:32px;
color:#fff;
background:linear-gradient(135deg,#16324f,#1f6ed4);
}

.service-card h3{
font-size:25px;
margin-bottom:15px;
color:#16324f;
}

.service-card p{
color:#6b7c93;
font-size:15px;
}

/* =========================
APPROACH
========================= */

.financial-approach{
padding:100px 20px;
text-align:center;
}

.approach-content{
max-width:850px;
margin:auto;
}

.approach-content p{
font-size:18px;
color:#5f6b7a;
margin-top:20px;
}

/* =========================
NOTICE
========================= */

.notice-box{
max-width:950px;
margin:0 auto 80px;
padding:30px;
background:#f5faff;
border:1px solid #d9e9f7;
border-radius:20px;
display:flex;
gap:18px;
align-items:flex-start;
}

.notice-box i{
font-size:24px;
color:#16324f;
margin-top:3px;
}

.notice-box p{
color:#4d647b;
}

/* =========================
CTA BUTTON
========================= */

.cta-section{
padding:90px 20px;
text-align:center;
}

.cta-section h2{
font-size:42px;
margin-bottom:30px;
}

.btn-primary{
display:inline-block;
padding:16px 38px;
background:#16324f;
color:#fff;
text-decoration:none;
border-radius:14px;
font-weight:600;
transition:.3s;
}

.btn-primary:hover{
background:#244b73;
transform:translateY(-3px);
}

/* =========================
BOTTOM IMAGE
========================= */

.bottom-image{
padding:0 0 80px;
}

.bottom-image img{
width:85%;
max-width:1000px;
height:380px;
object-fit:cover;
display:block;
margin:auto;
border-radius:30px;
box-shadow:0 20px 45px rgba(0,0,0,.1);
}

/* =========================
CONTACT SECTION
========================= */

.cta{
background:linear-gradient(135deg,#1f3b73,#0b1f3a);
color:white;
text-align:center;
padding:100px 20px;
}

.cta h2{
font-size:42px;
margin-bottom:15px;
}

.cta p{
max-width:700px;
margin:auto;
color:#d6d6d6;
}

.contact-icons{
display:flex;
justify-content:center;
gap:18px;
margin-top:35px;
flex-wrap:wrap;
}

.contact-icons a{
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(255,255,255,.12);
color:white;
font-size:20px;
text-decoration:none;
transition:.3s;
}

.contact-icons a:hover{
background:white;
color:#0b1f3a;
transform:translateY(-5px);
}

/* =========================
FOOTER
========================= */

.footer{
background:#071528;
padding:22px;
text-align:center;
}

.footer p{
color:#d6d6d6;
font-size:14px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.navbar{
flex-direction:column;
gap:20px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.about-title{
font-size:40px;
}

.page-hero p,
.approach-content p{
font-size:16px;
}

.cta h2{
font-size:32px;
}

.contact-icons a{
width:50px;
height:50px;
font-size:18px;
}

.notice-box{
flex-direction:column;
}

html,
body{
margin:0;
padding:0;
}

.footer{
background:#071528;
padding:22px;
text-align:center;
margin-bottom:0;
}

}  

.financial-approach .about-title{
font-size:45px;
font-weight:800;
line-height:1;
letter-spacing:-3px;
margin-bottom:25px;
}

@media(max-width:768px){

.financial-approach .about-title{
font-size:52px;
}

}

@media(max-width:768px){

.premium-title{
font-size:34px;
line-height:1.15;
letter-spacing:-1px;
}

.premium-subtitle{
font-size:20px;
}

}

@media(max-width:768px){

.finance-hero-card{
padding:30px 20px;
gap:25px;
border-radius:25px;
}

}

@media(max-width:768px){

.finance-right{
width:100%;
max-width:260px;
}

.finance-right img{
height:220px;
border-radius:25px;
}

}

.services-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:20px;
}

@media(max-width:768px){

.financial-approach .about-title{
font-size:34px;
line-height:1.2;
letter-spacing:-1px;
}

}

@media(max-width:768px){

.finance-hero-card{
flex-direction:column;
padding:30px 20px;
gap:25px;
text-align:center;
}

.premium-title{
font-size:34px;
line-height:1.15;
letter-spacing:-1px;
}

.premium-subtitle{
font-size:20px;
}

.hero-label{
font-size:14px;
padding:10px 18px;
letter-spacing:2px;
}

.finance-right{
width:100%;
max-width:260px;
}

.finance-right img{
height:220px;
}

.services-container{
grid-template-columns:1fr;
}

.financial-approach .about-title{
font-size:34px;
}

}
