/* ===========================================
   FocEmphasis Software Solutions
   style.css
=========================================== */

:root{
    --primary:#0d6efd;
    --secondary:#0b5ed7;
    --dark:#0b1320;
    --light:#f8f9fa;
    --white:#ffffff;
    --text:#4b5563;
    --heading:#1f2937;
    --success:#20c997;
    --border:#e5e7eb;
    --shadow:0 10px 30px rgba(0,0,0,.08);
    --radius:15px;
    --transition:.35s ease;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

/*=========================
Header
==========================*/

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo h2{
    color:var(--primary);
    font-size:30px;
    font-weight:700;
}

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
}

nav ul li a{
    color:#222;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:var(--primary);
}

/*=========================
Hero
==========================*/

.hero{

    min-height:100vh;

    background:
    linear-gradient(rgba(7,30,60,.75),rgba(7,30,60,.75)),
    url("../images/hero.jpg") center/cover no-repeat;

    display:flex;
    align-items:center;

}

.hero-content{

    color:#fff;

}

.tag{

    display:inline-block;

    padding:8px 18px;

    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.3);

    border-radius:30px;

    margin-bottom:25px;

    backdrop-filter:blur(8px);

}

.hero h1{

    font-size:60px;

    line-height:1.2;

    margin-bottom:25px;

    max-width:800px;

}

.hero p{

    font-size:20px;

    max-width:700px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary:hover{

    background:var(--secondary);

    transform:translateY(-3px);

}

.btn-secondary{

    border:2px solid #fff;

    color:#fff;

    padding:15px 35px;

    border-radius:50px;

    transition:.3s;

}

.btn-secondary:hover{

    background:#fff;

    color:#111;

}

/*=========================
Sections
==========================*/

section{

    padding:100px 0;

}

section h2{

    text-align:center;

    font-size:40px;

    color:var(--heading);

    margin-bottom:20px;

}

section> .container>p{

    max-width:900px;

    margin:auto;

    text-align:center;

    margin-bottom:60px;

}

/*=========================
Cards
==========================*/

.card-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.card{

    background:#fff;

    padding:40px;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:var(--transition);

    text-align:center;

}

.card:hover{

    transform:translateY(-12px);

}

.card i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:20px;

}

.card h3{

    color:var(--heading);

    margin-bottom:15px;

}

.card p{

    color:var(--text);

}

/*=========================
Statistics
==========================*/

.stats{

    background:#f5f8fc;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    text-align:center;

}

.stats-grid h2{

    font-size:55px;

    color:var(--primary);

    margin-bottom:10px;

}

.stats-grid p{

    font-size:18px;

}

/*=========================
About
==========================*/

.about-preview{

    background:#fff;

}

/*=========================
Solutions
==========================*/

.solutions{

    background:#f7f9fc;

}

/*=========================
Why Choose Us
==========================*/

.why-us{

    background:#fff;

}

.why-us ul{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:20px;

    margin-top:50px;

}

.why-us li{

    padding:25px;

    border-left:5px solid var(--primary);

    background:#f8f9fa;

    border-radius:10px;

    font-size:18px;

}

/*=========================
CTA
==========================*/

.cta{

    background:linear-gradient(135deg,#0d6efd,#003d99);

    text-align:center;

    color:#fff;

}

.cta h2{

    color:#fff;

    margin-bottom:20px;

}

.cta p{

    max-width:700px;

    margin:auto auto 40px;

}

.cta .btn-primary{

    background:#fff;

    color:#0d6efd;

}

.cta .btn-primary:hover{

    background:#f2f2f2;

}

/*=========================
Footer
==========================*/

footer{

    background:#08111f;

    color:#ccc;

    text-align:center;

    padding:60px 0;

}

footer h3{

    color:#fff;

    margin-bottom:15px;

}

footer p{

    margin:8px 0;

}

/*=========================
Scrollbar
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

}

::-webkit-scrollbar-track{

    background:#eee;

}

/*=========================
Responsive
==========================*/

@media(max-width:991px){

.hero h1{

font-size:45px;

}

nav ul{

gap:20px;

}

}

@media(max-width:768px){

header .container{

flex-direction:column;

height:auto;

padding:20px 0;

}

nav ul{

flex-wrap:wrap;

justify-content:center;

margin-top:15px;

}

.hero{

text-align:center;

padding-top:120px;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero h1{

font-size:36px;

}

.hero p{

font-size:17px;

}

section h2{

font-size:32px;

}

}

@media(max-width:576px){

.hero h1{

font-size:30px;

}

.btn-primary,
.btn-secondary{

width:100%;
text-align:center;

}

.card{

padding:30px;

}

.stats-grid h2{

font-size:42px;

}

}

<div class="contact-form">

<div class="row">

<div class="form-group">

<label>Full Name</label>

<input type="text" placeholder="Enter your name">

</div>

<div class="form-group">

<label>Email Address</label>

<input type="email" placeholder="Enter your email">

</div>

</div>

<div class="row">

<div class="form-group">

<label>Phone Number</label>

<input type="text" placeholder="Enter your phone number">

</div>

<div class="form-group">

<label>Subject</label>

<input type="text" placeholder="Enter subject">

</div>

</div>

<div class="form-group">

<label>Message</label>

<textarea placeholder="Write your message"></textarea>

</div>

<button class="btn-primary">

Send Message

</button>

</div>