*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

:root{
    --primary:#0A3D91;
    --dark:#0F172A;
    --light:#F4F8FF;
}

/* ===== HEADER ===== */
header{
    width:100%;
    background:white;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-container{
    width:95%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

.logo img{
    height:100px;
}

nav a{
    margin-left:30px;
    text-decoration:none;
    color:var(--primary);
    font-weight:500;
    transition:0.3s;
}

nav a:hover{
    color:#00BFFF;
}

/* ===== HERO ===== */
.hero{
    width:100%;
    min-height:85vh;
    background:linear-gradient(135deg,#0A3D91,#0F172A);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:60px 20px;
}

.hero-content{
    max-width:900px;
}

.hero h1{
    font-size:48px;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    margin-bottom:40px;
    opacity:0.9;
}

.btn{
    background:white;
    color:#0A3D91;
    padding:14px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn:hover{
    background:#00BFFF;
    color:white;
}

/* ===== SECTION ===== */
.section{
    width:100%;
    padding:100px 20px;
    text-align:center;
}

.container{
    max-width:1200px;
    margin:auto;
}

.section h2{
    font-size:34px;
    margin-bottom:30px;
}

.section p{
    max-width:900px;
    margin:auto;
    font-size:17px;
    line-height:1.6;
}

/* ===== SERVICES GRID ===== */
.services-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);
}

.card h3{
    margin-bottom:15px;
}

/* ===== CTA ===== */
.cta{
    background:linear-gradient(135deg,#0A3D91,#1E293B);
    color:white;
}

/* ===== FOOTER ===== */
footer{
    background:var(--dark);
    color:white;
    text-align:center;
    padding:40px 20px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .hero h1{
        font-size:32px;
    }

    nav{
        display:none;
    }
}
/* ===== ABOUT SECTION ===== */

.about-section{
    padding:100px 20px;
    background:#ffffff;
}

.about-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-left h2{
    font-size:36px;
    margin-bottom:25px;
    color:#0A3D91;
}

.about-left p{
    margin-bottom:20px;
    font-size:16px;
    line-height:1.7;
    color:#555;
}

.about-points div{
    margin-top:12px;
    font-weight:500;
    color:#0A3D91;
}

.about-right{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.about-card{
    background:#F4F8FF;
    padding:30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:0.3s;
}

.about-card:hover{
    transform:translateY(-8px);
}

.about-card h3{
    margin-bottom:10px;
    color:#0A3D91;
}

.about-card p{
    font-size:14px;
    color:#555;
}

/* Responsive */
@media(max-width:992px){
    .about-container{
        grid-template-columns:1fr;
    }
}/* ===== SERVICES SECTION ===== */

.services-section{
    padding:120px 20px;
    background:#F4F8FF;
    text-align:center;
}

.section-title{
    font-size:40px;
    margin-bottom:15px;
    color:#0A3D91;
}

.section-subtitle{
    font-size:18px;
    margin-bottom:60px;
    color:#555;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.service-card{
    background:white;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,0.06);
    text-align:left;
    transition:0.3s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    margin-bottom:15px;
    color:#0A3D91;
}

.service-card p{
    font-size:14px;
    margin-bottom:20px;
    color:#555;
}

.service-card ul{
    list-style:none;
    padding:0;
}

.service-card ul li{
    margin-bottom:8px;
    font-size:14px;
    color:#333;
}

.services-cta{
    margin-top:60px;
}

.btn-primary{
    background:#0A3D91;
    color:white;
    padding:15px 35px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-primary:hover{
    background:#003A8C;
}/* WHY SECTION */
.why-section{
    padding:100px 20px;
    text-align:center;
    background-image:url('iimg.jpg');
    background-attachment:fixed;
    background-size:cover;
    background-position:center;
}

.why-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.why-card{
    background:#d1d2d3;
    padding:30px;
    border-radius:20px;
    font-weight:600;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:0.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}
.stats-section{
    padding:100px 20px;
    background:linear-gradient(135deg,#0A3D91,#0F172A);
    color:white;
    text-align:center;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
}

.stat-box h2{
    font-size:40px;
    margin-bottom:10px;
}


/* =========================
   INDUSTRY SECTION (Service Style)
========================= */

.industry-section{
    padding:120px 20px;
    text-align:center;
    background-image:url('iimg2.jpg');
    background-attachment:fixed;
    background-size:cover;
    background-position:center;
}
.industry-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.industry-card{
    background:#F4F8FF;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    transition:0.3s ease;
    text-align:left;
}

.industry-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(10,61,145,0.15);
}

.industry-card h3{
    color:#0A3D91;
    margin-bottom:15px;
}

.industry-card p{
    font-size:14px;
    color:#555;
    line-height:1.6;
}
/* ===== FEATURED PROJECTS PREMIUM ===== */

.projects-section{
    padding:120px 20px;
    background:linear-gradient(135deg,#F4F8FF,#ffffff);
    text-align:center;
}

.projects-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

.project-card{
    background:white;
    padding:40px 30px;
    border-radius:25px;
    box-shadow:0 25px 50px rgba(0,0,0,0.07);
    transition:all 0.4s ease;
    position:relative;
    overflow:hidden;
}

.project-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#0A3D91,#00BFFF);
}

.project-card:hover{
    transform:translateY(-12px);
    box-shadow:0 35px 60px rgba(10,61,145,0.2);
}


.main-footer{
    background:#0F172A;
    color:white;
    padding:60px 20px 20px;
}

.footer-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
}

.main-footer a{
    display:block;
    color:#ccc;
    text-decoration:none;
    margin-bottom:8px;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    border-top:1px solid #333;
    padding-top:20px;
}
.process-section{
    padding:120px 20px;
    background:#ffffff;
    text-align:center;
}

.section-subtitle{
    margin-top:10px;
    color:#555;
}

.timeline{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.timeline-step{
    background:#F4F8FF;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,0.05);
    transition:0.4s;
}

.timeline-step:hover{
    transform:translateY(-10px);
}

.step-number{
    width:50px;
    height:50px;
    background:#0A3D91;
    color:rgb(255, 255, 255);
    font-size:20px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:0 auto 20px;
}
.hero {
    background-image:url('iimg2.jpg');
    background-attachment:fixed;
    background-size:cover;
    background-position:center;
}
.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.8s ease;
}

.fade-up.active{
    opacity:1;
    transform:translateY(0);
}
