/* ===================================================
   Elite Staffing & Services Agency Ltd
   Professional Responsive CSS
   Part 1
===================================================*/

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:"Segoe UI",Tahoma,Geneva,Verdana,sans-serif;

background:#08111f;

color:#e9eef7;

line-height:1.7;

font-size:16px;

overflow-x:hidden;

}

/* LINKS */

a{

text-decoration:none;

transition:.3s ease;

}

img{

max-width:100%;

display:block;

}

/* HEADINGS */

h1,h2,h3,h4{

font-weight:700;

line-height:1.3;

}

p{

margin-bottom:15px;

}

/* CONTAINER */

.container{

width:90%;

max-width:1200px;

margin:auto;

}

/* ===========================
HEADER
=========================== */

.header{

position:sticky;

top:0;

left:0;

width:100%;

z-index:999;

display:flex;

justify-content:space-between;

align-items:center;

padding:18px 8%;

background:rgba(8,17,31,.95);

backdrop-filter:blur(12px);

border-bottom:1px solid rgba(255,255,255,.08);

}

.brand h2{

font-size:24px;

color:#ffffff;

margin-bottom:4px;

}

.tag{

font-size:13px;

color:#00d4ff;

font-weight:600;

letter-spacing:1px;

}

.nav{

display:flex;

align-items:center;

gap:20px;

}

.nav a{

color:#ffffff;

font-weight:600;

font-size:15px;

position:relative;

padding:6px 2px;

}

.nav a::after{

content:"";

position:absolute;

left:0;

bottom:-5px;

width:0;

height:2px;

background:#00d4ff;

transition:.3s;

}

.nav a:hover{

color:#00d4ff;

}

.nav a:hover::after{

width:100%;

}

/* HERO */

.hero{

min-height:90vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:80px 20px;

background:
linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.75)),
url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80");

background-size:cover;

background-position:center;

color:#fff;

}

.small-hero{

min-height:55vh;

}

.hero-content{

max-width:900px;

}

.hero h1{

font-size:52px;

margin-bottom:20px;

font-weight:800;

}

.hero p{

font-size:20px;

max-width:760px;

margin:auto;

opacity:.95;

}
/* ===================================================
   PART 2
   Buttons • Sections • Cards • Stats • Product
===================================================*/

/* BUTTONS */

.buttons{
display:flex;
justify-content:center;
align-items:center;
flex-wrap:wrap;
gap:15px;
margin-top:35px;
}

.btn{

display:inline-block;

padding:14px 30px;

background:#00d4ff;

color:#08111f;

font-weight:700;

border-radius:50px;

transition:.3s ease;

box-shadow:0 8px 25px rgba(0,212,255,.25);

}

.btn:hover{

transform:translateY(-4px);

box-shadow:0 12px 30px rgba(0,212,255,.40);

}

.btn.outline{

background:transparent;

border:2px solid #00d4ff;

color:#00d4ff;

box-shadow:none;

}

.btn.outline:hover{

background:#00d4ff;

color:#08111f;

}

/* SECTIONS */

.section{

padding:90px 8%;

max-width:1200px;

margin:auto;

}

.section h2{

font-size:36px;

color:#00d4ff;

margin-bottom:25px;

text-align:center;

}

.section p{

font-size:17px;

color:#d8dee9;

max-width:900px;

margin:0 auto 18px;

text-align:center;

}

.section ul{

max-width:850px;

margin:30px auto;

padding-left:25px;

}

.section li{

margin-bottom:14px;

font-size:17px;

color:#d8dee9;

}

/* CARDS */

.cards{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

gap:25px;

margin-top:45px;

}

.card{

background:#101b2d;

padding:30px;

border-radius:18px;

border:1px solid rgba(255,255,255,.06);

transition:.35s ease;

box-shadow:0 8px 25px rgba(0,0,0,.25);

}

.card:hover{

transform:translateY(-10px);

border-color:#00d4ff;

box-shadow:0 18px 45px rgba(0,212,255,.18);

}

.card h3{

color:#00d4ff;

font-size:22px;

margin-bottom:18px;

}

.card p{

margin:0;

text-align:left;

font-size:16px;

color:#dbe4ef;

}

/* STATS */

.stats{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

gap:25px;

padding:70px 8%;

background:#0d1728;

}

.stat{

text-align:center;

padding:25px;

}

.stat h3{

font-size:42px;

color:#00d4ff;

margin-bottom:10px;

}

.stat p{

font-size:17px;

color:#ffffff;

}

/* PRODUCT SECTION */

.product{

background:#0c1525;

padding:90px 8%;

text-align:center;

}

.product h2{

font-size:38px;

color:#00d4ff;

margin-bottom:20px;

}

.product p{

max-width:900px;

margin:0 auto 30px;

font-size:18px;

color:#dbe4ef;

}
/* ===================================================
   PART 3
   CTA • Footer • Forms • Tables • Utilities
===================================================*/

/* ==========================
   CALL TO ACTION
========================== */

.cta{

background:linear-gradient(135deg,#00d4ff,#0099cc);

color:#08111f;

text-align:center;

padding:90px 8%;

}

.cta h2{

font-size:38px;

margin-bottom:20px;

font-weight:800;

}

.cta p{

max-width:850px;

margin:0 auto 35px;

font-size:18px;

}

/* ==========================
   FOOTER
========================== */

footer{

background:#050b18;

padding:45px 20px;

text-align:center;

border-top:1px solid rgba(255,255,255,.08);

}

footer h3{

color:#00d4ff;

margin-bottom:15px;

font-size:24px;

}

footer p{

margin:10px 0;

color:#d6dce5;

}

footer a{

color:#00d4ff;

margin:0 6px;

font-weight:600;

}

footer a:hover{

color:#ffffff;

}

/* ==========================
   FORMS
========================== */

form{

max-width:700px;

margin:auto;

}

input,
textarea,
select{

width:100%;

padding:15px;

margin-bottom:18px;

background:#101b2d;

color:#ffffff;

border:1px solid rgba(255,255,255,.12);

border-radius:10px;

font-size:16px;

outline:none;

transition:.3s;

}

input:focus,
textarea:focus,
select:focus{

border-color:#00d4ff;

box-shadow:0 0 12px rgba(0,212,255,.25);

}

textarea{

min-height:160px;

resize:vertical;

}

/* ==========================
   GOOGLE FORM / IFRAME
========================== */

iframe{

width:100%;

min-height:900px;

border:none;

border-radius:16px;

background:#ffffff;

box-shadow:0 12px 35px rgba(0,0,0,.30);

}

/* ==========================
   TABLES
========================== */

table{

width:100%;

border-collapse:collapse;

margin-top:30px;

}

th{

background:#00d4ff;

color:#08111f;

padding:14px;

}

td{

padding:14px;

border-bottom:1px solid rgba(255,255,255,.08);

}

tr:nth-child(even){

background:#101b2d;

}

/* ==========================
   LISTS
========================== */

ul{

padding-left:22px;

}

li{

margin-bottom:10px;

}

/* ==========================
   IMAGES
========================== */

.section img{

border-radius:16px;

box-shadow:0 15px 35px rgba(0,0,0,.30);

margin:25px auto;

}

/* ==========================
   DIVIDERS
========================== */

hr{

border:none;

height:1px;

background:rgba(255,255,255,.10);

margin:60px 0;

}

/* ==========================
   SELECTION COLOR
========================== */

::selection{

background:#00d4ff;

color:#08111f;

}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#08111f;

}

::-webkit-scrollbar-thumb{

background:#00d4ff;

border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

background:#00b8df;

}
/* ===================================================
   PART 4
   Animations • Responsive • Utilities • Accessibility
===================================================*/

/* ==========================
   ANIMATIONS
========================== */

.fade-in{
opacity:0;
animation:fadeIn 1s ease forwards;
}

.slide-left{
opacity:0;
transform:translateX(-40px);
animation:slideLeft .9s ease forwards;
}

.slide-right{
opacity:0;
transform:translateX(40px);
animation:slideRight .9s ease forwards;
}

.zoom-in{
opacity:0;
transform:scale(.9);
animation:zoomIn .8s ease forwards;
}

@keyframes fadeIn{

to{
opacity:1;
}

}

@keyframes slideLeft{

to{
opacity:1;
transform:translateX(0);
}

}

@keyframes slideRight{

to{
opacity:1;
transform:translateX(0);
}

}

@keyframes zoomIn{

to{
opacity:1;
transform:scale(1);
}

}

/* ==========================
   HOVER EFFECTS
========================== */

.card,
.btn,
.stat{

transition:all .3s ease;

}

.card:hover{

transform:translateY(-8px);

}

.stat:hover{

transform:translateY(-6px);

}

.hero h1,
.section h2{

text-wrap:balance;

}

/* ==========================
   ACCESSIBILITY
========================== */

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus{

outline:3px solid #00d4ff;
outline-offset:3px;

}

button{

cursor:pointer;

border:none;

}

/* ==========================
   UTILITIES
========================== */

.text-center{

text-align:center;

}

.mt-1{

margin-top:10px;

}

.mt-2{

margin-top:20px;

}

.mt-3{

margin-top:30px;

}

.mt-4{

margin-top:40px;

}

.mb-1{

margin-bottom:10px;

}

.mb-2{

margin-bottom:20px;

}

.mb-3{

margin-bottom:30px;

}

.mb-4{

margin-bottom:40px;

}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:992px){

.hero h1{

font-size:42px;

}

.section h2{

font-size:32px;

}

.cards{

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

}

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

.header{

flex-direction:column;

gap:15px;

padding:18px;

text-align:center;

}

.brand h2{

font-size:20px;

}

.nav{

flex-wrap:wrap;

justify-content:center;

gap:12px;

}

.nav a{

margin:0;

font-size:15px;

}

.hero{

min-height:75vh;

padding:60px 20px;

}

.hero h1{

font-size:32px;

}

.hero p{

font-size:17px;

}

.section{

padding:60px 20px;

}

.section h2{

font-size:28px;

}

.buttons{

flex-direction:column;

}

.btn{

width:100%;
max-width:320px;

}

.stats{

grid-template-columns:1fr 1fr;

}

.cta{

padding:60px 20px;

}

.cta h2{

font-size:30px;

}

iframe{

min-height:700px;

}

}

/* ==========================
   SMALL PHONES
========================== */

@media (max-width:480px){

.hero h1{

font-size:28px;

}

.hero p{

font-size:16px;

}

.stats{

grid-template-columns:1fr;

}

.card{

padding:22px;

}

footer{

padding:35px 15px;

}

footer h3{

font-size:20px;

}

}

/* ==========================
   PRINT
========================== */

@media print{

.header,
.nav,
.cta,
footer{

display:none;

}

body{

background:#fff;

color:#000;

}

.section{

padding:20px;

}

}

/* ===================================================
   END OF STYLE.CSS
===================================================*/