@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
--primary:#0a3cff;
--secondary:#00c6ff;
--dark:#05070d;
--bg:#f4f7fb;
--card:#ffffff;
--text:#222;
--muted:#777;
--success:#25d366;
}

/* ================= RESET ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:var(--bg);
color:var(--text);
line-height:1.6;
}

/* ================= HEADER ================= */

/* ================= PROFESSIONAL HEADER BANNER ================= */

.main-header{
  background:linear-gradient(120deg,#0a3cff,#00c6ff);
  min-height:220px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.main-header::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.25);
}

.header-overlay{
  position:relative;
  z-index:1;
  max-width:1000px;
  padding:20px;
}

.main-header h1{
  color:white;
  font-size:42px;
  font-weight:700;
  margin-bottom:10px;
}

.main-header p{
  color:#eaf6ff;
  font-size:18px;
  letter-spacing:.5px;
}

@media(max-width:768px){
  .main-header h1{font-size:26px;}
  .main-header p{font-size:14px;}
}
/* ================= NAVBAR ================= */

.pro-navbar{
background:var(--dark);
position:sticky;
top:0;
z-index:999;
box-shadow:0 4px 15px rgba(0,0,0,.4);
}

.nav-container{
max-width:1250px;
margin:auto;
padding:12px 20px;
display:flex;
align-items:center;
justify-content:space-between;
flex-wrap:wrap;
}

.logo{
color:white;
font-size:22px;
font-weight:700;
letter-spacing:1px;
}

.logo span{color:var(--secondary);}

.nav-links a{
color:white;
margin:6px 10px;
text-decoration:none;
font-size:14px;
font-weight:500;
transition:.3s;
}

.nav-links a:hover{
color:var(--secondary);
}

.login-btn{
background:#111;
padding:6px 14px;
border-radius:20px;
}

.contact-btn{
background:linear-gradient(120deg,var(--primary),var(--secondary));
padding:6px 16px;
border-radius:20px;
}

/* ================= PAGE THEMES ================= */

.theme-home .pro-navbar{background:#05070d;}
.theme-partner .pro-navbar{background:linear-gradient(120deg,#1f4037,#99f2c8);}
.theme-hire .pro-navbar{background:linear-gradient(120deg,#283048,#859398);}
.theme-refer .pro-navbar{background:linear-gradient(120deg,#42275a,#734b6d);}

.theme-partner .nav-links a,
.theme-hire .nav-links a,
.theme-refer .nav-links a{color:white;}

.theme-partner .nav-links a:hover,
.theme-hire .nav-links a:hover,
.theme-refer .nav-links a:hover{color:#00ffd5;}

/* ================= HERO ================= */

.hero{
background:linear-gradient(120deg,#101820,#1f3a5f);
color:white;
text-align:center;
padding:100px 20px;
}

.hero h2{
font-size:40px;
font-weight:700;
margin-bottom:10px;
}

.hero p{
opacity:.85;
margin-bottom:25px;
}

.hero-btns a{
display:inline-block;
margin:8px;
padding:13px 32px;
border-radius:30px;
background:var(--primary);
color:white;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.hero-btns a:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,.35);
}

.hero-btns .green{background:var(--success);}
.hero-btns .dark{background:#111;}

/* ================= SECTIONS ================= */

.section{
padding:70px 20px;
text-align:center;
}

.section h2{
color:var(--primary);
font-size:32px;
margin-bottom:30px;
font-weight:700;
}

.light{background:#fff;}

/* ================= GRID & CARDS ================= */

.grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.card{
background:var(--card);
padding:28px 20px;
border-radius:16px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
font-weight:600;
transition:.35s;
border-top:4px solid var(--primary);
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 14px 30px rgba(0,0,0,.15);
background:linear-gradient(120deg,var(--primary),var(--secondary));
color:white;
border-top:4px solid white;
}

/* ================= CONTACT SPLIT ================= */

.contact-split{
background:linear-gradient(120deg,var(--primary),var(--secondary));
padding:90px 20px;
}

.contact-wrapper{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:50px;
align-items:center;
}

.contact-left{
color:white;
}

.contact-left h2{
font-size:36px;
margin-bottom:10px;
}

.contact-left p{
opacity:.9;
margin-bottom:20px;
}

.contact-item{
margin:12px 0;
font-size:16px;
}

.contact-actions{
margin-top:15px;
}

.c-btn{
display:inline-block;
margin:8px 10px 0 0;
padding:10px 26px;
border-radius:30px;
background:white;
color:var(--primary);
text-decoration:none;
font-weight:600;
}

.c-btn.green{
background:var(--success);
color:white;
}

/* ================= CONTACT FORM ================= */

.contact-right{
background:white;
padding:35px;
border-radius:22px;
box-shadow:0 12px 35px rgba(0,0,0,.35);
}

.contact-right h3{
margin-bottom:12px;
color:var(--primary);
}

.contact-right input,
.contact-right textarea{
width:100%;
padding:12px;
margin:8px 0;
border-radius:8px;
border:1px solid #ddd;
font-size:14px;
outline:none;
}

.contact-right input:focus,
.contact-right textarea:focus{
border-color:var(--primary);
box-shadow:0 0 0 2px rgba(10,60,255,.1);
}

.contact-right textarea{
height:120px;
resize:none;
}

.contact-right button{
background:linear-gradient(120deg,var(--primary),var(--secondary));
color:white;
border:none;
padding:12px;
width:100%;
border-radius:30px;
font-size:16px;
font-weight:600;
cursor:pointer;
transition:.3s;
}

.contact-right button:hover{
opacity:.9;
transform:translateY(-2px);
}

/* ================= FOOTER ================= */

.footer-pro{
background:linear-gradient(120deg,#05070d,#0b1325);
color:white;
padding:80px 20px 0;
}

.footer-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

.footer-box{
background:rgba(255,255,255,.04);
padding:28px;
border-radius:18px;
border:1px solid rgba(255,255,255,.08);
backdrop-filter:blur(6px);
}

.footer-box h3{
color:var(--secondary);
margin-bottom:14px;
font-size:20px;
}

.footer-box p,
.footer-box li{
color:#ddd;
font-size:14px;
line-height:1.7;
}

.footer-box ul{
list-style:none;
margin-top:10px;
padding:0;
}

.footer-box ul li{
margin:7px 0;
}

.footer-box ul li a{
color:#ddd;
text-decoration:none;
transition:.3s;
}

.footer-box ul li a:hover{
color:var(--secondary);
padding-left:6px;
}

/* ================= FOOTER BUTTONS ================= */

.f-btns a{
display:inline-block;
margin:10px 6px 0 0;
padding:9px 20px;
border-radius:25px;
background:var(--primary);
color:white;
text-decoration:none;
font-weight:600;
font-size:14px;
}

.f-btns .green{background:var(--success);}

/* ================= FOOTER BOTTOM ================= */

.footer-bottom{
margin-top:50px;
background:#000;
text-align:center;
padding:15px;
color:#aaa;
font-size:13px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){
.hero h2{font-size:28px;}
.section h2{font-size:24px;}
.logo{margin-bottom:8px;}
.nav-links{margin-top:8px;}
}
