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

body{
    font-family:Arial, sans-serif;
    color:#333;
}

/* HERO */

.services-hero{
    height:70vh;
    background:url("images/cwag4.jpeg") center/cover;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:white;
    max-width:900px;
    padding:20px;
}

.hero-content h1{
    font-size:4rem;
    margin:20px 0;
}

.service-badge{
    background:#F5C857;
    color:#000;
    padding:10px 20px;
    border-radius:50px;
}

.hero-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 35px;
    background:#F5C857;
    color:black;
    text-decoration:none;
    border-radius:5px;
}

/* INTRO */

.intro-section {
    padding: 100px 20px;
    background: #083c8a;
}

/* About CONTAINER */
.intro-container {
    max-width: 1200px;
    margin: auto;
    display:flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGE */
.intro-image {
    flex: 1;
    min-width: 200px;
}

.intro-image img {
    width: 100px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.intro-image img:hover {
    transform: scale(1.03);
}

/* CONTENT */
.intro-content {
    flex: 1;
    min-width: 300px;
}


/* SECTION */

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    color:rgb(20,6,99);
    font-weight:700;
}

.intro-content {
  display: flex;
  
}

/* SERVICES */

.services-section{
    padding:80px 20px;
    background:#f8f9fa;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.service-card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.4s;
}

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

.icon{
    font-size:50px;
    margin-bottom:15px;
}

/* PROCESS */

.process-section{
    padding:80px 20px;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.step{
    text-align:center;
}

.step span{
    display:inline-block;
    width:70px;
    height:70px;
    line-height:70px;
    border-radius:50%;
    background:#F5C857;
    font-size:24px;
    font-weight:bold;
}

/* INDUSTRIES */

.industry-section{
    background:rgb(20,6,99);
    color:white;
    padding:80px 20px;
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.industry-grid div{
    background:rgba(255,255,255,.1);
    padding:25px;
    border-radius:10px;
}

/* EMERGENCY */

.emergency-section{
    text-align:center;
    padding:80px 20px;
}

.emergency-btn{
    display:inline-block;
    margin-top:20px;
    background:red;
    color:white;
    padding:15px 30px;
    text-decoration:none;
    border-radius:5px;
}

/* CTA */

.cta-section{
    background:#F5C857;
    text-align:center;
    padding:80px 20px;
}

.cta-btn{
    background:rgb(20,6,99);
    color:white;
    padding:15px 30px;
    text-decoration:none;
    display:inline-block;
    margin-top:20px;
    border-radius:5px;
}

/* ANIMATION */

.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:.8s;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

@media(max-width:768px){

    .hero-content h1{
        font-size:2.5rem;
    }

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