*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

/* HEADER */

#header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.4s;
    background:transparent;
}

#header.scrolled{
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
}

.container{
    max-width:1400px;
    margin:auto;
    padding:20px 40px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    height:70px;
}

nav{
    display:flex;
    gap:40px;
}

nav a{
    text-decoration:none;
    color:white;
    font-weight:600;
}

#header.scrolled nav a{
    color:#111;
}

.contact-btn{
    background:#2952ff;
    color:white;
    text-decoration:none;
    padding:16px 35px;
    font-weight:600;
}

/* HERO */

.hero{
    height:100vh;

    background:url("https://proedge.net.in/wp-content/uploads/2026/05/ChatGPT-Image-May-1-2026-08_32_46-PM.png")
    center center/cover;

    position:relative;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;

    max-width:1200px;

    margin:auto;

    padding-top:260px;
    padding-left:60px;
}

.hero h1{
    color:white;
    font-size:80px;
    line-height:1.1;
}

.hero h1 span{
    color:#2563eb;
}

.hero p{
    color:white;
    font-size:28px;
    margin-top:30px;
}

.hero-btn{
    display:inline-block;

    margin-top:40px;

    background:#2563eb;

    color:white;

    text-decoration:none;

    padding:20px 50px;

    border-radius:10px;
}

/* MOBILE */

@media(max-width:768px){

.hero h1{
    font-size:42px;
}

.hero-content{
    padding-left:20px;
    padding-right:20px;
    padding-top:200px;
}

nav{
    display:none;
}

.contact-btn{
    display:none;
}

.logo{
    height:55px;
}

}







/* =======================
ABOUT SECTION
======================= */

.about-section{
    padding:120px 40px;
    background:#f5f5f5;
}

.about-container{
    max-width:1400px;
    margin:auto;

    display:flex;
    gap:70px;
    align-items:center;
}

.about-image-wrapper{
    flex:1;
    position:relative;
}

.bg-box{
    position:absolute;
    width:100%;
    height:100%;
    background:#e9e9e9;

    top:30px;
    left:50px;

    z-index:1;
}

.about-image{
    width:100%;
    position:relative;
    z-index:2;
    display:block;
}

.about-content{
    flex:1;
}

.about-content h4{
    font-size:22px;
    color:#002244;
    margin-bottom:15px;
}

.about-content h2{
    font-size:58px;
    line-height:1.15;
    color:#001a33;
    margin-bottom:30px;
}

.about-content p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.stats{
    display:flex;
    gap:60px;
    margin-top:30px;
    margin-bottom:40px;
}

.stats h3{
    font-size:55px;
    color:#183153;
    font-weight:700;
}

.stats span{
    display:block;
    color:#444;
    margin-top:5px;
}

.about-btn{
    display:inline-block;

    background:#2d55e5;
    color:white;

    text-decoration:none;

    padding:18px 35px;

    font-weight:600;
}

/* MOBILE */

@media(max-width:991px){

.about-container{
    flex-direction:column;
}

.about-content h2{
    font-size:38px;
}

.stats{
    flex-wrap:wrap;
    gap:30px;
}

.stats h3{
    font-size:40px;
}

}