@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f7fbff;
color:#16324f;
overflow-x:hidden;
line-height:1.7;
}

/* =========================
NAVBAR
========================= */

.navbar{
background:white;
padding:14px 8%;
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 20px rgba(0,0,0,0.05);
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo-img{
width:220px;
display:block;
}

nav{
display:flex;
align-items:center;
gap:28px;
}

nav a{
text-decoration:none;
color:#16324f;
font-weight:800;
font-size:15px;
transition:0.3s;
}

nav a:hover,
nav a.active{
color:#1f6ed4;
}

/* =========================
DROPDOWN
========================= */

.dropdown{
position:relative;
}

.dropbtn{
background:none;
border:none;
font-size:15px;
font-weight:800;
cursor:pointer;
color:#16324f;
display:flex;
align-items:center;
gap:8px;
font-family:'Poppins',sans-serif;
}

.dropdown-content{
display:none;
position:absolute;
top:42px;
left:0;
background:white;
min-width:240px;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
z-index:999;
}

.dropdown.active .dropdown-content{
display:block;
}

.dropdown-content a{
display:block;
padding:14px 18px;
text-decoration:none;
color:#16324f;
transition:0.3s;
}

.dropdown-content a:hover{
background:#eef5fc;
color:#1f6ed4;
}

/* =========================
HERO
========================= */

.hero{
padding:100px 8%;
background:white;
}

.hero-content{
max-width:1200px;
margin:auto;
text-align:center;
}

.hero-image{
display:flex;
justify-content:center;
margin-bottom:50px;
}

.hero-image img{
width:100%;

max-width:950px;

height:400px;

object-fit:cover;

border-radius:35px;

display:block;

margin:auto;

box-shadow:
0 20px 60px rgba(0,0,0,0.12);
}

.small-title{
font-size:24px;
font-weight:700;
letter-spacing:4px;
color:#1f6ed4;
}

.hero-text h1{
font-size:48px;
line-height:1.2;
margin:22px 0;
color:#16324f;
}

.hero-text p{
font-size:20px;
line-height:2;
color:#6b7c93;
max-width:850px;
margin:auto;
}

/* =========================
BUTTON
========================= */

.hero-buttons{
display:flex;
justify-content:center;
margin-top:40px;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:16px 38px;
border-radius:14px;
background:#16324f;
color:white;
text-decoration:none;
font-weight:600;
transition:0.3s;
}

.btn:hover{
background:#244b73;
transform:translateY(-4px);
}

/* =========================
SOLUTIONS
========================= */

.solutions-grid{
display:flex;
justify-content:center;
align-items:center;
gap:45px;
flex-wrap:wrap;
padding:0 8% 110px;
}

.solution-card{
width:400px;
height:400px;

background:white;

border-radius:50%;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;

text-align:center;

padding:55px;

position:relative;
overflow:hidden;

transition:0.4s;

box-shadow:0 15px 40px rgba(0,0,0,0.06);

text-decoration:none;
color:#16324f;

flex-shrink:0;
}

.solution-card:hover{
transform:translateY(-10px);
}

.solution-card::before{
content:"";
position:absolute;
width:180px;
height:180px;
background:rgba(31,110,212,0.08);
border-radius:50%;
top:-40px;
right:-40px;
}

.solution-card h3{
font-size:34px;
line-height:1.3;
margin-bottom:18px;
position:relative;
z-index:2;

background:linear-gradient(
135deg,
#16324f,
#1f6ed4
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.solution-card p{
font-size:17px;
line-height:1.9;
max-width:260px;
color:#6b7c93;
position:relative;
z-index:2;
}

/* =========================
VISION SECTION
========================= */

.vision-section{
padding:110px 8%;
background:white;
}

.vision-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:35px;
}

.vision-card{
background:#f5faff;
padding:50px;
border-radius:30px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:0.4s;
}

.vision-card:hover{
transform:translateY(-8px);
}

.icon-glow{
width:90px;
height:90px;
margin:0 auto 25px;
border-radius:24px;
display:flex;
align-items:center;
justify-content:center;
font-size:34px;
color:white;

background:linear-gradient(
135deg,
#16324f,
#1f6ed4
);
}

.vision-card h2{
font-size:34px;
margin-bottom:18px;
}

.vision-card p{
font-size:17px;
line-height:1.9;
color:#6b7c93;
}

/* =========================
WHY SECTION
========================= */

.why-section{
padding:110px 8%;
background:#f7fbff;
}

.section-title{
text-align:center;
max-width:850px;
margin:auto;
}

.section-title h2{
font-size:46px;
margin-bottom:18px;
}

.section-title p{
font-size:18px;
line-height:1.9;
color:#6b7c93;
}

.why-grid{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:35px;
margin-top:70px;
}

.why-card{
width:300px;
height:300px;
background:white;
border-radius:50%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:35px;
position:relative;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,0.06);
transition:0.4s;
}

.why-card:hover{
transform:translateY(-8px);
}

.why-card::before{
content:"";
position:absolute;
width:170px;
height:170px;
background:rgba(31,110,212,0.08);
border-radius:50%;
top:-40px;
right:-40px;
}

.why-card h3{
font-size:25px;
margin-bottom:16px;
position:relative;
z-index:2;
}

.why-card p{
font-size:15px;
line-height:1.8;
color:#6b7c93;
position:relative;
z-index:2;
}

/* =========================
CONTACT SECTION
========================= */

.cta{
background:linear-gradient(135deg,#1f3b73,#0b1f3a);
color:white;
text-align:center;
padding:100px 20px;
}

.cta h2{
font-size:42px;
margin-bottom:18px;
}

.cta p{
max-width:700px;
margin:auto;
line-height:1.9;
color:#d6d6d6;
font-size:17px;
}

/* ICONS */

.contact-icons{
display:flex;
justify-content:center;
align-items: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,0.12);

backdrop-filter:blur(10px);

color:white;

font-size:20px;

text-decoration:none;

transition:0.3s ease;
}

.contact-icons a:hover{
background:white;
color:#0b1f3a;
transform:translateY(-5px);
}

/* =========================
MOBILE
========================= */

@media(max-width:900px){

.nav-container{
flex-direction:column;
gap:20px;
}

.logo-img{
width:190px;
}

nav{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.hero{
padding:70px 20px;
}

.hero-text h1{
font-size:38px;
}

.hero-text p{
font-size:17px;
line-height:1.8;
}

.solutions-grid{
gap:30px;
}

.solution-card{
width:300px;
height:300px;
padding:35px;
}

.solution-card h3{
font-size:26px;
}

.solution-card p{
font-size:14px;
}

.vision-card{
padding:35px 25px;
}

.vision-card h2{
font-size:28px;
}

.section-title h2{
font-size:34px;
}

.section-title p{
font-size:16px;
}

.why-card{
width:270px;
height:270px;
}

.cta{
padding:80px 20px;
}

.cta h2{
font-size:32px;
}

.cta p{
font-size:15px;
line-height:1.8;
}

.contact-icons{
gap:14px;
}

.contact-icons a{
width:50px;
height:50px;
font-size:18px;
}

}
.section-title h2{
font-size:52px;
font-weight:700;

line-height:1.2;

margin-bottom:20px;

background:linear-gradient(
135deg,
#16324f,
#1f6ed4
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

position:relative;

display:inline-block;

letter-spacing:-1px;
}

/* ÇáÎØ Çááí ÊÍÊ ÇáÚäæÇä */

.section-title h2::after{
content:"";

width:90px;
height:5px;

background:linear-gradient(
90deg,
#1f6ed4,
#6daee6
);

border-radius:20px;

position:absolute;

left:50%;
bottom:-14px;

transform:translateX(-50%);
}

.about-title{

font-size:68px;

font-weight:800;

line-height:1.1;

text-align:center;

margin-bottom:28px;

letter-spacing:-2px;

color:#16324f;

position:relative;
}

/* PRIME UP SOLUTIONS */

.about-title span{

display:block;

margin-top:10px;

background:linear-gradient(
135deg,
#1f6ed4,
#16324f
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

text-shadow:
0 10px 30px rgba(31,110,212,0.18);

position:relative;
}

/* ÇáÎØ ÇáÔíß ÊÍÊ ÇáÚäæÇä */

.about-title::after{

content:"";

position:absolute;

left:50%;
bottom:-18px;

transform:translateX(-50%);

width:120px;
height:6px;

border-radius:30px;

background:linear-gradient(
90deg,
#1f6ed4,
#6daee6
);

box-shadow:
0 0 20px rgba(31,110,212,0.3);
}

/* ãæÈÇíá */

@media(max-width:768px){

.about-title{

font-size:42px;

line-height:1.25;
}

.about-title span{
font-size:48px;
}

}
/* ================= FOOTER ================= */

.footer{
background:#0b1f3a;

padding:22px 20px;

display:flex;
justify-content:center;
align-items:center;

text-align:center;
}

.footer p{
color:#d6d6d6;

font-size:14px;
font-weight:500;

margin:0;
}

.info-item a{
text-decoration:none;
color:#16324f;
}
.fa-linkedin-in{
font-family:"Font Awesome 6 Brands" !important;
font-weight:400 !important;
}

.fa-brands,
.fa-solid,
.fas,
.fab{
font-family:"Font Awesome 6 Free","Font Awesome 6 Brands" !important;
}

.about-title{
font-size:68px;
font-weight:800;
line-height:1.1;
text-align:center;
margin-bottom:28px;
letter-spacing:-2px;
color:#16324f;
position:relative;
}

