
/*
Theme Name: Hirenex Elementor Clone
Author: OpenAI
Version: 6.0
Description: Pixel-perfect Elementor-friendly clone with Astra-like mobile menu.
*/

:root{
--primary:#5f2eea;
--dark:#16162d;
--light:#faf8ff;
--muted:#6b7280;
--white:#fff;
}

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

html{
scroll-behavior:smooth;
}

body{
font-family:Inter, Arial, sans-serif;
background:var(--light);
color:var(--dark);
line-height:1.6;
overflow-x:hidden;
-webkit-font-smoothing:antialiased;
}

.container{
width:min(92%,1280px);
margin:auto;
}

img{
max-width:100%;
display:block;
height:auto;
}

a{
text-decoration:none;
}

/* Header */
header{
background:#fff;
position:sticky;
top:0;
z-index:999;
border-bottom:1px solid #ece8fa;
}

.navbar{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
gap:20px;
}

.logo{
font-size:36px;
font-weight:900;
color:var(--primary);
}

.nav-menu{
display:flex;
align-items:center;
gap:30px;
list-style:none;
}

.nav-menu a{
font-weight:600;
color:#222;
}

.contact-btn{
background:var(--primary);
color:#fff;
padding:14px 24px;
border-radius:12px;
font-weight:700;
}

.menu-toggle{
display:none;
font-size:32px;
background:none;
border:none;
cursor:pointer;
}

/* Hero */
.hero{
padding:70px 0 40px;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr 1fr;
gap:50px;
align-items:center;
}

.badge{
display:inline-block;
padding:10px 18px;
background:#efe8ff;
color:var(--primary);
border-radius:999px;
font-weight:700;
font-size:13px;
margin-bottom:20px;
}

.hero h1{
font-size:74px;
line-height:1.03;
font-weight:900;
letter-spacing:-2px;
margin-bottom:22px;
}

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

.hero p{
font-size:20px;
color:var(--muted);
margin-bottom:30px;
max-width:620px;
}

.hero-buttons{
display:flex;
gap:15px;
flex-wrap:wrap;
}

.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 26px;
border-radius:14px;
font-weight:700;
min-height:50px;
}

.primary-btn{
background:var(--primary);
color:#fff;
}

.secondary-btn{
border:2px solid #ddd6fe;
background:#fff;
color:var(--primary);
}

.hero-right{
display:grid;
grid-template-columns:1fr auto;
gap:20px;
align-items:center;
}

.hero-image img{
border-radius:30px;
}

.mini-stats{
display:flex;
flex-direction:column;
gap:18px;
}

.mini-card{
background:#fff;
padding:24px;
border-radius:22px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
min-width:180px;
}

.mini-card h3{
font-size:30px;
margin-bottom:5px;
}

/* Brand strip */
.brand-strip{
margin:20px auto 70px;
background:#24126b;
padding:28px;
border-radius:24px;
display:grid;
grid-template-columns:repeat(6,1fr);
gap:20px;
text-align:center;
color:#fff;
font-weight:700;
}

/* Sections */
.section{
padding:70px 0;
}

.section-title{
text-align:center;
font-size:52px;
font-weight:900;
margin-bottom:14px;
}

.section-sub{
text-align:center;
max-width:760px;
margin:0 auto 50px;
color:var(--muted);
font-size:18px;
}

/* Cards */
.cards{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:22px;
}

.card{
background:#fff;
padding:34px;
border-radius:24px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card-icon{
width:60px;
height:60px;
background:#efe8ff;
border-radius:18px;
margin-bottom:20px;
}

.card h3{
font-size:24px;
margin-bottom:14px;
}

/* Dual sections */
.dual-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:25px;
margin-top:50px;
}

.dual-box{
background:#fff;
border-radius:28px;
padding:40px;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.dual-box h2{
font-size:40px;
line-height:1.1;
margin-bottom:18px;
}

.dual-box ul{
padding-left:18px;
color:var(--muted);
}

.dual-box img{
width:240px;
border-radius:22px;
}

/* Stats */
.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;
}

.stat{
background:#fff;
padding:28px;
border-radius:22px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.stat h2{
font-size:48px;
color:var(--primary);
}

/* Why section */
.why{
margin-top:60px;
background:#fff;
padding:60px;
border-radius:32px;
}

.why-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
margin-top:35px;
}

.why-item{
text-align:center;
}

/* CTA */
.cta{
margin-top:50px;
background:linear-gradient(135deg,#28136d,#5f2eea);
padding:60px;
border-radius:30px;
display:flex;
justify-content:space-between;
align-items:center;
gap:30px;
color:#fff;
}

.cta h2{
font-size:42px;
margin-bottom:10px;
}

/* Testimonial */
.testimonial{
margin-top:45px;
padding:35px;
background:#fff;
border-radius:24px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

/* Footer same style */
footer{
background:#24126b;
color:#fff;
padding:70px 0 30px;
margin-top:70px;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:30px;
}

.footer-grid ul{
list-style:none;
}

.footer-grid li{
margin-bottom:10px;
opacity:.9;
}

.bottom{
border-top:1px solid rgba(255,255,255,.1);
margin-top:40px;
padding-top:20px;
text-align:center;
opacity:.8;
}

/* Elementor */
.elementor-page .site-main{
padding:0;
}

/* Responsive */
@media(max-width:1024px){

.hero-grid,
.cards,
.stats-grid,
.why-grid,
.footer-grid,
.brand-strip{
grid-template-columns:1fr 1fr;
}

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

.hero-right{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

.menu-toggle{
display:block;
}

.nav-menu{
position:absolute;
top:80px;
left:0;
width:100%;
background:#fff;
padding:25px;
flex-direction:column;
align-items:flex-start;
gap:20px;
display:none;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.nav-menu.active{
display:flex;
}

.hero-grid,
.cards,
.stats-grid,
.why-grid,
.footer-grid,
.brand-strip{
grid-template-columns:1fr;
}

.hero h1{
font-size:42px;
letter-spacing:-1px;
}

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

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

.btn{
width:100%;
}

.dual-box{
flex-direction:column;
text-align:center;
padding:28px;
}

.dual-box h2{
font-size:30px;
}

.dual-box img{
width:100%;
max-width:280px;
}

.cta{
flex-direction:column;
text-align:center;
padding:35px 22px;
}

.why{
padding:35px 22px;
}

.section{
padding:50px 0;
}

}
