body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.hadr-hero-section{
    position:relative;
    background:url('../images/ha-dr-banner.jpg');
    background-size:cover;
    background-position:center;
    height:550px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:#0f172a;
}

.hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    color:#fff;
    max-width:900px;
}

.hero-content h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero-content p{
    font-size:22px;
    line-height:1.8;
}

.hero-btn{
    display:inline-block;
    margin-top:20px;
    margin-bottom:2px;
    padding:14px 15px;
    background:#0066ff;
    color:white;
    text-decoration:none;
    border-radius:5px;
}

.intro-section{
    padding:80px 0;
    text-align:center;
}

.intro-section h2{
    font-size:40px;
    margin-bottom:20px;
}

.intro-section p{
    max-width:900px;
    margin:auto;
    line-height:1.8;
}

.tech-section{
    background:#f8f9fa;
    padding:80px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:white;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 0 15px rgba(0,0,0,.1);
}

.service-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.card-body{
    padding:25px;
}

.card-body h3{
    margin-bottom:20px;
}

.card-body ul{
    padding-left:20px;
    line-height:2;
}

.implementation-section{
    padding:80px 0;
    text-align:center;
}

.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.step{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.1);
}

.step span{
    width:60px;
    height:60px;
    line-height:60px;
    display:inline-block;
    background:#0066ff;
    color:white;
    border-radius:50%;
    font-size:24px;
    font-weight:bold;
}

.benefits-section{
    background:#0f172a;
    color:white;
    padding:80px 0;
    text-align:center;
}

.benefit-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:40px;
}

.benefit-box{
    background:#1e293b;
    padding:30px;
    border-radius:10px;
}

.cta-section{
    /*
    padding:80px 0;
    text-align:center;
    */
    background: #0066ff;
    color: white;
    text-align: center;
    padding: 80px 0;;
}

.cta-btn{
    
    display:inline-block;
    margin-top:20px;
    background:#28a745;
    color:white;
    text-decoration:none;
    padding:15px 35px;
    border-radius:5px;
  
}

@media(max-width:992px){

.service-grid{
    grid-template-columns:1fr;
}

.steps{
    grid-template-columns:1fr;
}

.benefit-grid{
    grid-template-columns:1fr;
}

.hero-content h1{
    font-size:36px;
}

.hero-content p{
    font-size:18px;
}
}