/*==================================================
    PRADEEP ENGINEERS
    MAIN STYLESHEET
==================================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=====================================
    CSS VARIABLES
=====================================*/

:root{

    --primary:#C8102E;
    --secondary:#FFC107;
    --dark:#0F172A;
    --light:#F8FAFC;
    --white:#ffffff;
    --gray:#64748B;

    --shadow:0 15px 40px rgba(0,0,0,.12);

    --transition:.35s ease;

    --radius:10px;

}


/*=====================================
    RESET
=====================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;

}

img{

    width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}


/*=====================================
    CONTAINER
=====================================*/

.container{

    width:90%;
    max-width:1280px;
    margin:auto;

}


/*=====================================
    NAVBAR
=====================================*/

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;

    transition:.4s;

}

.navbar{

    height:74px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}


.logo img{

    width:115px;
    transition:0.4s ease;

}

.header.active .logo img{

    width:90px;

}

.nav-links{

    display:flex;

    gap:35px;

}


.nav-links a{

    color:white;

    font-weight:500;

    position:relative;

}


.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:var(--secondary);

    transition:.4s;

}

.nav-links a:hover::after{

    width:100%;

}



.quote-btn{

    background:var(--primary);

    color:white;

    padding:14px 28px;

    border-radius:40px;

    font-weight:600;

    transition:.35s;

}


.quote-btn:hover{

    background:var(--secondary);

    color:#111;

}



/*=====================================
    HERO
=====================================*/

.hero{

    height:100vh;

    background:url("../images/hero/hero-bg.jpg") center center/cover no-repeat;

    position:relative;

    display:flex;

    align-items:center;

    justify-content:flex-start;

}


.overlay{

    position:absolute;

    inset:0;

    background:rgba(15,23,42,.72);

}


.hero-content{

    position:relative;
    z-index:2;

    color:white;

    max-width:620px;

    margin-left:40px;

    padding-top:40px;

}

.small-title{

    color:var(--secondary);

    letter-spacing:3px;

    font-size:15px;

    margin-bottom:20px;

}


.hero h1{

    font-size:72px;

    line-height:1.05;

    font-weight:600;

}


.hero h1 span{

    color:var(--secondary);

}


.hero-text{

    margin-top:25px;

    color:#ddd;

    font-size:18px;

    line-height:1.8;

    max-width:620px;

}


.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}


.btn-primary{

    background:var(--primary);

    color:white;

    padding:16px 34px;

    border-radius:50px;

    transition:.35s;

    font-weight:600;

}


.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:var(--shadow);

}


.btn-secondary{

    border:2px solid white;

    color:white;

    padding:16px 34px;

    border-radius:50px;

    transition:.35s;

}


.btn-secondary:hover{

    background:white;

    color:black;

}


.header.active{

    background:rgba(7,26,46,.96);

    backdrop-filter:blur(14px);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

}

/*=====================================
        INDUSTRIES
=====================================*/

.industries{

    padding:120px 0;

    background:#F8FAFC;

}

.section-title{

    text-align:center;

    max-width:760px;

    margin:auto;

}

.section-title span{

    color:var(--primary);

    font-weight:600;

    letter-spacing:2px;

}

.section-title h2{

    font-size:48px;

    margin-top:15px;

    color:var(--dark);

}

.section-title h2 span{

    color:var(--primary);

}

.section-title p{

    margin-top:20px;

    color:var(--gray);

    line-height:1.8;

}

.industry-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.industry-card{

    background:white;

    border-radius:15px;

    padding:45px 35px;

    text-align:center;

    transition:.4s;

    box-shadow:0 8px 30px rgba(0,0,0,.05);

    cursor:pointer;

}

.industry-card i{

    font-size:55px;

    color:var(--primary);

    margin-bottom:25px;

}

.industry-card h3{

    margin-bottom:15px;

    color:var(--dark);

}

.industry-card p{

    color:var(--gray);

    line-height:1.7;

}

.industry-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.15);

    border-bottom:5px solid var(--primary);

}

/*=====================================
        STATISTICS
=====================================*/

.stats-section{

    background:#071A2E;

    padding:120px 0;

    position:relative;

    overflow:hidden;

}

.stats-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:rgba(255,193,7,.06);

    border-radius:50%;

    top:-250px;

    right:-150px;

}

.stats-heading{

    text-align:center;

    max-width:760px;

    margin:auto;

    color:white;

}

.stats-heading span{

    color:#FFC107;

    font-weight:600;

    letter-spacing:2px;

}

.stats-heading h2{

    font-size:48px;

    margin:20px 0;

    line-height:1.2;

}

.stats-heading h2 span{

    display:block;

    color:white;

}

.stats-heading p{

    color:#CBD5E1;

    line-height:1.8;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:70px;

}

.stat-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border-radius:18px;

    padding:45px 30px;

    text-align:center;

    transition:.4s;

}

.stat-card:hover{

    transform:translateY(-10px);

    border-color:#FFC107;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

}

.stat-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#C8102E;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:30px;

}

.stat-icon i{

    color:white;

    font-size:34px;

}

.stat-card h3{

    font-size:60px;

    color:white;

    display:inline-block;

}

.stat-card span{

    color:#FFC107;

    font-size:35px;

    font-weight:bold;

}

.stat-card h4{

    margin-top:20px;

    color:white;

    font-size:22px;

}

.stat-card p{

    margin-top:15px;

    color:#CBD5E1;

    line-height:1.8;

}

/*=====================================
        ABOUT COMPANY
=====================================*/

.about-company{

    padding:120px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:20px;

    box-shadow:0 25px 60px rgba(0,0,0,.12);

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.03);

}

.experience-box{

    position:absolute;

    bottom:-30px;

    right:-30px;

    width:180px;

    height:180px;

    background:#C8102E;

    color:white;

    border-radius:20px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.experience-box h2{

    font-size:52px;

}

.experience-box p{

    margin-top:10px;

    text-align:center;

}

.section-tag{

    color:#C8102E;

    letter-spacing:2px;

    font-weight:600;

}

.about-content h2{

    font-size:46px;

    margin:20px 0;

    line-height:1.2;

}

.about-content h2 span{

    color:#C8102E;

}

.about-content p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:35px;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:500;

}

.feature i{

    color:#C8102E;

    font-size:18px;

}
/*=====================================
FOOTER
=====================================*/

.footer{

background:#071A2E;

margin-top:120px;

color:white;

}

.footer-cta{

background:linear-gradient(135deg,#C8102E,#071A2E);

padding:70px 0;

}

.footer-cta-content{

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

}

.footer-cta h2{

font-size:42px;

margin-bottom:15px;

}

.footer-cta p{

max-width:600px;

line-height:1.8;

}

.footer-cta-buttons{

display:flex;

gap:20px;

}

.footer-main{

padding:90px 0;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1.3fr;

gap:50px;

}

.footer-logo{

width:160px;

margin-bottom:25px;

}

.footer-grid h3{

margin-bottom:25px;

font-size:24px;

color:#FFC107;

}

.footer-grid p{

color:#C7D2FE;

line-height:1.8;

}

.footer-grid ul{

list-style:none;

padding:0;

}

.footer-grid li{

margin-bottom:14px;

}

.footer-grid a{

color:#E2E8F0;

text-decoration:none;

transition:.3s;

}

.footer-grid a:hover{

color:#FFC107;

padding-left:8px;

}

.contact-info i{

color:#C8102E;

margin-right:12px;

}

.social-icons{

margin-top:30px;

display:flex;

gap:15px;

}

.social-icons a{

width:45px;

height:45px;

display:flex;

align-items:center;

justify-content:center;

background:rgba(255,255,255,.08);

border-radius:50%;

font-size:18px;

transition:.3s;

}

.social-icons a:hover{

background:#C8102E;

transform:translateY(-5px);

}

.footer-download{

padding:40px 0;

border-top:1px solid rgba(255,255,255,.08);

border-bottom:1px solid rgba(255,255,255,.08);

}

.download-box{

display:flex;

justify-content:space-between;

align-items:center;

gap:30px;

}

.download-btn{

padding:16px 35px;

background:#C8102E;

color:white;

border-radius:40px;

font-weight:600;

text-decoration:none;

transition:.3s;

}

.download-btn:hover{

background:#FFC107;

color:#071A2E;

}

.copyright{

padding:25px 0;

text-align:center;

color:#94A3B8;

font-size:15px;

}
/*==================================================
                PROCESS SECTION
==================================================*/

.process{
    padding:120px 0;
    background:#f8fafc;
    position:relative;
}

.process .section-title{
    margin-bottom:70px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.process-card{
    position:relative;
    background:#fff;
    padding:45px 35px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
    overflow:hidden;
    border:1px solid #edf2f7;
}

.process-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#C8102E;
}

.process-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.step{
    font-size:60px;
    font-weight:700;
    color:rgba(200,16,46,.08);
    position:absolute;
    right:20px;
    top:15px;
}

.process-card i{
    width:75px;
    height:75px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#C8102E;
    color:#fff;
    font-size:28px;
    margin-bottom:25px;
}

.process-card h3{
    font-size:28px;
    color:#071A2E;
    margin-bottom:15px;
}

.process-card p{
    color:#64748B;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

.process-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.process-grid{
grid-template-columns:1fr;
}

}