 body{
        margin:0;
        font-family: 'Poppins', sans-serif;
       
        color:#fff;
    }

    a{ text-decoration:none; }

    /* ---------- Marquee Top Section ---------- */
    .top-marquee{
        background:#b42737;
        color:#ffcc00;
        padding:10px;
        font-weight:bold;
        font-size:18px;
        border-bottom:2px solid #ffcc00;
    }

    marquee{ font-size:18px; }

    /* ---------- 3 Column Image Section ---------- */
    .three-images{
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
        gap:10px;
        padding:10px;
		background-color:#fff;
    }
    .three-images img{
        width:100%;
       
        object-fit:cover;
        border-radius:10px;
        transition:0.4s;
        filter:brightness(85%);
    }
    .three-images img:hover{
       
		 transform:scale(1.08) rotate(1deg);
        filter:brightness(115%);
        box-shadow:0 0 25px #000;
    }

    /* ---------- Blink Text ---------- */
    .blink-text{
		
        text-align:center;
        font-size:24px;
        font-weight:bold;
        color:#ffcc00;
           padding: 10px;
        animation:blink 2s infinite;
    }
    @keyframes blink{
        50%,100%{opacity:1;}
        100%{opacity:1;}
    }
   

    /* ---------- About Us Section ---------- */
    .about{
        padding:40px 20px;
        text-align:center;
    }
    .about h1{
        color:#b42737;
        margin-bottom:20px;
        font-size:32px;
		font-weight:bold;
    }
    .about p{
        max-width:1200px;
        margin:auto;
        font-size:17px;
        line-height:33px;
		color:#000;
    }

    /* ---------- 6 Services Section ---------- */
    .services{
        padding:40px 20px;
        text-align:center;
		background-color:#ffcc00;
    }
    .services h2{
        font-size: 2rem;
    margin-bottom: 40px;
    color: #000;
    }
 .services h2::after{
      content:""; width:60px; height:3px; background:#ffca28; display:block; margin:10px auto 0; border-radius:2px; 
    }
    .service-grid{
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
        gap:20px;
    }
    .service-box{
        background:#b42737;
        border:1px solid #333;
        padding:20px;
        border-radius:12px;
        transition:0.4s;
    }
	 .service-box:hover{
        transform:translateY(-8px);
        border-color:#ffcc00;
        box-shadow:0 0 20px #ffcc00;
    }
    .service-box img{
        width:100%;
        height:230px;
        object-fit:cover;
        border-radius:10px;
    }
    .service-box h3{
        color:#ffcc00;
        margin:10px 0;
    }
    .call-btn{
        background:#ffcc00;
        display:inline-block;
        padding:10px 20px;
        margin-top:10px;
        border-radius:30px;
        color:#000;
        font-weight:bold;
    }

    /* ---------- Why Choose Us (4 Cards) ---------- */
    .why{
        padding:40px 20px;
        text-align:center;
    }
    .why h2{ font-size: 2rem;
    margin-bottom: 40px;
    color: #b42737;
	}
 .why h2::after{
      content:""; width:60px; height:3px; background:#b42737; display:block; margin:10px auto 0; border-radius:2px; 
    }
    .why-grid{
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
        gap:20px;
        margin-top:20px;
    }
    .why-card{
        background:#b42737;
        padding:25px;
        border-radius:12px;
        border:1px solid #333;
    }
    .why-card i{
        font-size:40px;
        color:#ffcc00;
        margin-bottom:10px;
    }

    /* ---------- Banner ---------- */
    .banner img{
        width:100%;
        object-fit:cover;
     
    }

    /* ---------- 4 Service Cards with Hover ---------- */
    .card-4{
        padding:40px 20px;
        text-align:center;
    }
    .card-4 h2{ font-size: 2rem;
    margin-bottom: 40px;
    color: #b42737; }
.card-4 h2::after{
      content:""; width:60px; height:3px; background:#b42737; display:block; margin:10px auto 0; border-radius:2px; 
    }
    .card-grid{
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
        gap:20px;
    }
    .card{
        background:#b42737;
        padding:20px;
        border-radius:12px;
        border:1px solid #333;
        transition:0.4s;
    }
    .card:hover{
        transform:translateY(-8px);
        border-color:#ffcc00;
    }
    .card img{
        width:100%;
        height:230px;
        object-fit:cover;
        border-radius:10px;
    }
.card h3{
	color:#ffcc00;
}
    /* ---------- Client Feedback ---------- */
    .feedback{
        padding:40px 20px;
        text-align:center;
    }
    .feedback h2{ font-size: 2rem;
    margin-bottom: 40px;
    color: #b42737; }
.feedback h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #b42737;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}
    .feedback-grid{
        display:grid;
        grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
        gap:20px;
    }
	.client h3{
	color:#ffcc00;
}
    .client{
		line-height: 25px;
        background:#b42737;
        padding:10px;
		font-size:16px;
        border-radius:12px;
        border:2px solid #000;
    }
    .client img{
		border: 5px solid #ffcc00;
        width:100px;
        height:100px;
        border-radius:50%;
        object-fit:cover;
        margin-bottom:10px;
    }

/* CTA Section */
.cta-section {
  background: #b42737;
  background-size: cover;
  background-position: center;
  padding: 70px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 30px auto;
  max-width: 1200px;
}

.cta-content h2 {
  font-size: 32px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-content p {
  font-size: 18px;
  color: #e6e6e6;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: #f0a500;
  color: #000;
  padding: 14px 35px;
  font-size: 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.cta-btn:hover {
  background: #ffcc00;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-btn {
    font-size: 18px;
    padding: 12px 28px;
  }
}
/* Footer Styling */
.footer {
    background: #000;
    color: #fff;
    padding: 50px 20px 10px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.footer-col h3, 
.footer-col h2 {
    margin-bottom: 15px;
    font-size: 22px;
    color: #ffcc00;
}

.footer-col p,
.footer-col li a {
    color: #ccc;
    line-height: 1.5;
    font-size: 15px;
}
.footer-col p a{
    color: #fff;
}
.footer-col p a:hover {
    color: #ffcc00;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin: 8px 0;
}
.footer-col ul li i{
    color: #ffcc00;
}
.footer-col ul li a {
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffcc00;
}

/* Social Icons */


/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding: 15px 0 5px 0;
    color: #fff;
    margin-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
}


/* Responsive */
@media (max-width: 768px) {
    .footer-col h3 {
        font-size: 20px;
    }
}
/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatButton 2s ease-in-out infinite;
    z-index: 999;
    transition: 0.4s;
}

.floating-whatsapp img {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0 3px #fff);
}

/* WhatsApp Hover */
.floating-whatsapp:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.8);
}


/* Floating Call Button */
.floating-call {
    position: fixed;
    bottom: 110px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #ffcc00;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: floatButton 2.2s ease-in-out infinite;
    z-index: 999;
    transition: 0.4s;
}

.floating-call img {
    width: 33px;
    height: 33px;
    filter: drop-shadow(0 0 3px #000);
}

/* Call Button Hover */
.floating-call:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.9);
}


/* Floating Animation */
@keyframes floatButton {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}
