*{box-sizing:border-box;margin:0;padding:0}

:root{
--blue:#38bdf8;
--blue-dark:#0284c7;
--navy:#0f172a;
--text:#172033;
--muted:#64748b;
--border:#e2e8f0;
--soft:#f8fafc;
}

html{scroll-behavior:smooth}

body{
font-family:'Tajawal',sans-serif;
color:var(--text);
background:#fff;
line-height:1.7;
}

a{text-decoration:none;color:inherit}

.container{
width:min(1160px,calc(100% - 40px));
margin:auto;
}

/* HEADER */

.site-header{
position:sticky;
top:0;
z-index:100;
background:rgba(255,255,255,.94);
backdrop-filter:blur(14px);
border-bottom:1px solid #f1f5f9;
}

.nav{
height:78px;
display:flex;
align-items:center;
gap:30px;
}

.logo,.footer-logo{
font-size:27px;
font-weight:800;
letter-spacing:-1px;
white-space:nowrap;
}

.logo span,.footer-logo span{
color:var(--blue-dark);
}

.nav nav{
display:flex;
align-items:center;
justify-content:center;
gap:25px;
flex:1;
}

.nav nav a{
font-size:13px;
font-weight:700;
color:#475569;
transition:.2s;
}

.nav nav a:hover{
color:var(--blue-dark);
}

.language{
border:1px solid var(--border);
padding:7px 13px;
border-radius:8px;
font-size:12px;
font-weight:800;
}

/* HERO */

.hero{
padding:125px 0 115px;
background:
radial-gradient(circle at 50% 0%,rgba(56,189,248,.15),transparent 35%),
linear-gradient(180deg,#fff,#f8fafc);
text-align:center;
}

.hero h1{
font-size:clamp(48px,7vw,86px);
line-height:1;
letter-spacing:-4px;
font-weight:800;
margin-bottom:28px;
}

.hero h1 span{
color:var(--blue-dark);
}

.hero p{
max-width:720px;
margin:auto;
font-size:19px;
line-height:2;
color:var(--muted);
}

.hero-actions{
display:flex;
justify-content:center;
gap:12px;
margin-top:35px;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
min-height:50px;
padding:0 25px;
border-radius:11px;
font-size:14px;
font-weight:700;
transition:.2s;
}

.btn-primary{
background:var(--blue-dark);
color:white;
box-shadow:0 12px 28px rgba(2,132,199,.2);
}

.btn-primary:hover{
transform:translateY(-2px);
}

.btn-secondary{
border:1px solid var(--border);
background:#fff;
}

/* SECTIONS */

.section{
padding:95px 0;
}

.section-head{
text-align:center;
max-width:700px;
margin:0 auto 50px;
}

.section-head h2{
font-size:38px;
line-height:1.3;
margin-bottom:12px;
}

.section-head p{
color:var(--muted);
}

/* COMPANIES */

.companies{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:22px;
}

.company-card{
padding:38px;
border:1px solid var(--border);
border-radius:20px;
background:#fff;
transition:.25s;
}

.company-card:hover{
transform:translateY(-5px);
border-color:#bae6fd;
box-shadow:0 22px 55px rgba(15,23,42,.08);
}

.company-number{
display:block;
color:var(--blue-dark);
font-size:13px;
font-weight:800;
margin-bottom:20px;
}

.company-card h3{
font-size:23px;
line-height:1.4;
margin-bottom:12px;
}

.company-card p{
color:var(--muted);
font-size:14px;
line-height:1.9;
margin-bottom:22px;
}

.learn{
font-size:13px;
font-weight:800;
color:var(--blue-dark);
}

/* ABOUT */

.light-section{
background:var(--soft);
}

.center-content{
max-width:760px;
margin:auto;
text-align:center;
}

.center-content h2{
font-size:38px;
margin-bottom:20px;
}

.center-content p{
font-size:17px;
color:var(--muted);
line-height:2;
}

/* INDUSTRIES */

.industry-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:16px;
}

.industry{
padding:30px 20px;
border:1px solid var(--border);
border-radius:16px;
text-align:center;
font-weight:800;
background:#fff;
}

/* PAGE HERO */

.page-hero{
padding:90px 0;
background:linear-gradient(135deg,#f8fafc,#fff);
}

.page-hero h1{
font-size:52px;
margin-bottom:15px;
}

.page-hero p{
color:var(--muted);
max-width:700px;
font-size:17px;
}

/* COMPANY PAGE */

.company-page{
padding:90px 0;
}

.company-page h1{
font-size:48px;
line-height:1.2;
margin-bottom:20px;
}

.company-page .lead{
font-size:19px;
color:var(--muted);
max-width:750px;
line-height:2;
}

.back{
display:inline-block;
margin-bottom:35px;
color:var(--blue-dark);
font-size:13px;
font-weight:800;
}

/* CONTACT */

.contact-box{
max-width:760px;
margin:auto;
padding:45px;
border:1px solid var(--border);
border-radius:22px;
}

.form-group{
margin-bottom:18px;
}

.form-group label{
display:block;
font-size:13px;
font-weight:700;
margin-bottom:7px;
}

.form-group input,
.form-group textarea{
width:100%;
border:1px solid var(--border);
border-radius:10px;
padding:13px;
font-family:inherit;
outline:none;
}

.form-group textarea{
min-height:150px;
resize:vertical;
}

/* FOOTER */

.site-footer{
background:var(--navy);
color:#fff;
padding:70px 0 0;
}

.footer-grid{
display:grid;
grid-template-columns:1.4fr 1fr 1fr 1fr;
gap:45px;
padding-bottom:55px;
}

.footer-logo{
display:block;
margin-bottom:15px;
}

.footer-grid p,
.footer-grid a{
display:block;
color:#94a3b8;
font-size:13px;
margin-bottom:9px;
}

.footer-grid h4{
font-size:14px;
margin-bottom:18px;
}

.footer-grid a:hover{
color:#fff;
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.1);
padding:22px 0;
display:flex;
justify-content:space-between;
gap:20px;
color:#64748b;
font-size:12px;
}

.footer-bottom div{
display:flex;
gap:20px;
}

@media(max-width:850px){

.nav nav{
display:none;
}

.nav{
justify-content:space-between;
}

.companies{
grid-template-columns:1fr;
}

.industry-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:550px){

.container{
width:min(100% - 28px,1160px);
}

.hero{
padding:85px 0 75px;
}

.hero h1{
font-size:50px;
letter-spacing:-2px;
}

.hero p{
font-size:16px;
}

.hero-actions{
flex-direction:column;
}

.section{
padding:70px 0;
}

.section-head h2,
.center-content h2{
font-size:30px;
}

.page-hero h1,
.company-page h1{
font-size:38px;
}

.industry-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

.footer-bottom{
flex-direction:column;
}

}
