body{margin:0;font-family:Arial, sans-serif;background:#f5f1e9;color:#222;}
/* MARQUEE */
.marquee{
background:#d60000;color:#fff;padding:8px 0;font-size:20px;
text-align:center;
font-weight:bold;
}
@keyframes scroll{
0%{transform:translateX(100%);}
100%{transform:translateX(-100%);}
}

/* 3 IMAGE SECTION */
.images3{
display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:15px;padding:20px;
}
.images3 img{
width:100%;border-radius:1px;
transition:.3s;box-shadow:0 4px 10px rgba(0,0,0,0.3);
}
.images3 img:hover{transform:scale(1.05);}

/* BLINK SECTION */
.blink{
background:#000;color:#fff;font-size:22px;
padding:12px;text-align:center;font-weight:bold;
animation:blink 1s infinite;
}
@keyframes blink{
	50%{opacity:0;
	
	}
}

/* ABOUT US */
.section-title{
text-align:center;font-size:32px;font-weight:bold;margin-top:40px;color:#d60000;margin-bottom: 35px;
}
.about{
padding: 7px;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
	color:#000;
}
.about strong{
	color:#d60000;
}
/* SERVICES 6 GRID */
.services{
	background: #d60000;
display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:20px;padding:20px;
}
.service-card{
background:#fff;border-radius:12px;padding:15px;
text-align:center;box-shadow:0 4px 10px rgba(0,0,0,0.2);
transition:.3s;
color:#000;
}
.service-card:hover{transform:translateY(-8px);}
.service-card img{
width:100%;height:220px;border-radius:10px;object-fit:cover;    box-shadow: -3px 5px 0px #d60000;
}
.service-card h3{
	color:#d60000;
	font-weight:bold;
}
.call-btn{
display:inline-block;background:#d60000;color:#fff;
padding:8px 14px;border-radius:8px;text-decoration:none;
margin-top:10px;    border: 1px solid;    font-weight: bold;
}

/* WHY CHOOSE US */
.choose{
display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;padding:20px;margin-bottom: 30px;
}
.choose-box{
background: rgba(255,255,255,0.9);
    padding:20px;border-radius:12px;
    box-shadow:0 4px 10px rgb(0 0 0 / 110%);
    text-align:center;
    transition: opacity .3s, transform .3s;
    opacity:0.9;
}
.choose-box:hover{
    opacity:1;
    transform:scale(1.05);
}
.choose-box h3{
	color:#d60000;
}
.choose-box i{font-size:40px;color:#d60000;}
/* 3 COLUMN SERVICES LIST */
.services-list-3col{
  
    width:95%;
    margin:20px auto 50px auto;
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
    gap:18px;
}

.services-list-3col .item{
    background: rgba(255,255,255,0.9);
    border-radius:12px;
    padding:15px 18px;
    font-size:20px;
    font-weight:600;
    box-shadow:0 4px 10px rgba(0,0,0,0.2);
    transition:0.3s ease;
    opacity:0.9;
    display:flex;
    align-items:center;
    gap:10px;
}

.services-list-3col .item:hover{
    background:#d60000;
    color:#fff;
    transform:translateY(-5px);
    opacity:1;
    box-shadow:0 6px 18px rgba(0,0,0,0.35);
}
/* IMAGE BANNER */
.banner img{width:100%;}

/* SERVICES 4 CARD */
.services4{
display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;padding:20px;
}
.card4{
background:#d60000;padding:15px;border-radius:12px;color:#fff;
box-shadow:0 4px 10px rgba(0,0,0,0.3);
transition:.4s;text-align:center;
}
.card4:hover{transform:scale(1.07);}
.card4 img{
width:100%;height:220px;border-radius:10px;object-fit:cover;
}
.card4 h3{
color: #d60000;
    padding: 10px;
    background: #fff;
    border-radius: 32px;
}
/* FEEDBACK */
.feedback{
display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;padding:20px;
}
.client{
background:#d60000;padding:15px;border-radius:12px;line-height:25px;
text-align:center;box-shadow:0 4px 10px rgba(0,0,0,0.25);
}
.client img{
width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 8px double #ffcc00;
}
.client h3{
	color:#ffcc00;
}
.client p{
	color:#fff;
}
/* FOOTER */
/* Footer */
footer {
    background: #000;
    color: #ddd;
    padding: 60px 20px 30px;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
  }

  .footer-col {
    flex: 1 1 250px;
    min-width: 250px;
  }

  .footer-col h3 {
    color: #ffd700;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
  }

  .footer-col h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #ffd700;
    position: absolute;
    left: 0;
    bottom: -8px;
  }

  .footer-col p {
    line-height: 1.7;
    color: #bbb;
  }
 .footer-col p a {
  text-decoration:none;color:#ffd700;
  }
  .footer-col ul {
    list-style: none;
    margin-top: 10px;
	padding:0;
  }

  .footer-col ul li {
    margin-bottom: 12px;
  }

  .footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: #ffd700;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
}