 body {margin:0;font-family:Arial, sans-serif;background:#f4f4f4;color:#222;}
 header {background:#4b0f0f;color:#fff;padding:10px 0;text-align:center;font-size:20px;font-weight:bold;position:sticky;top:0;z-index:999;}
 .marquee {background:#660000;color:#fff;padding:10px 0;font-size:18px;white-space:nowrap;overflow:hidden;}
 .marquee span {display:inline-block;padding-left:100%;animation:scroll 30s linear infinite;}
 @keyframes scroll {0%{transform:translateX(0);}100%{transform:translateX(-100%);}}

 .mark {background:#ffcc00;padding:10px;text-align:center;font-weight:bold;font-size:18px;}
 .mark span {animation:blink 1.5s infinite;}
 @keyframes blink {50%{opacity:0;}}
 /* Slider */
 .slider {position:relative;width:100%;max-width:1600px;margin:auto;overflow:hidden;}
 .slides {display:flex;width:200%;animation:slide 8s infinite;} 
 .slides img {width:50%;height:450px;object-fit:cover;}
 @keyframes slide {0%{transform:translateX(0);}50%{transform:translateX(-50%);}100%{transform:translateX(0);}}
 /* About */
 .about {padding:40px;text-align:center;background:#660000;line-height: 30px;color:#fff;}

 .about h1{
	 color:#ffcc00;
 }
 .about strong{
	 color:#ffcc00;
 }
 .services, .why, .services2, .feedback {padding:40px;text-align:center;background:#4b0f0f;}
 .services h2{
	 text-align: center;
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 30px;
    position: relative;
    color: #ffcc00;
 }
  .services h3{
	font-weight:bold;
    color: #660000;
	font-size: 1.2rem;
 }
 .service-grid, .why-grid, .services2-grid, .feedback-grid {display:flex;gap:20px;flex-wrap:wrap;justify-content:center;}
 .service-card, .service2-card, .why-card, .feedback-card {background:#fff;border-radius:15px;padding:20px;box-shadow:0 2px 10px rgba(0,0,0,0.1);width:280px;transition:0.3s;}
 .service-card:hover, .service2-card:hover {transform:translateY(-10px);box-shadow:0 4px 15px rgba(0,0,0,0.2);}
.service-card, .service2-card, .feedback-card p{
	text-align:center;
	    line-height: 25px;
} 
 .service-card img, .service2-card img {width:100%;border-radius:10px;height:170px;object-fit:cover;}
 .button {background:#660000;color:#fff;padding:10px 20px;text-decoration:none;display:inline-block;margin-top:10px;border-radius:5px;}
/* Why Choose Us */
.why-choose{
	background-color: #660000;
    padding-bottom: 34px;
	
}

.why-choose h2{
	    text-align: center;
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 30px;
    padding-top: 39px;
    position: relative;
    color: #ffd700;
    margin-top: 0px;
}
.why-choose h2::after { content:""; width:60px; height:3px; background:#ffca28; display:block; margin:10px auto 0; border-radius:2px; }
.why-container { display:flex; flex-wrap:wrap; justify-content:center; gap:25px; }
.why-box { width:200px; background:#fff; padding:25px 15px; border-radius:15px; color:#000; text-align:center;transition: 0.3s;}
.why-box:hover{
	transform:translateY(-10px)
}
.why-box i { font-size:40px; margin-bottom:10px; display:block; }

.services2 h2{
	 text-align: center;
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 30px;
    padding-top: 39px;
    position: relative;
    color: #ffd700;
    margin-top: 0px;
}
.services2 h2::after { content:""; width:60px; height:3px; background:#ffca28; display:block; margin:10px auto 0; border-radius:2px; }
 .banner {width:100%;text-align:center;}
 .banner img {width:100%;}
 .feedback-card img {width:90px;height:90px;border-radius:50%;object-fit:cover;margin-bottom:10px;border: 5px solid #ffcc00;}
 
 .feedback h2{
	    text-align: center;
    text-transform: capitalize;
    font-size: 30px;
    margin-bottom: 30px;
    padding-top: 39px;
    position: relative;
    color: #ffd700;
    margin-top: 0px;
}
.feedback h2::after { content:""; width:60px; height:3px; background:#ffca28; display:block; margin:10px auto 0; border-radius:2px; }
 .footer-col {width:23%;min-width:200px;}
 
 .three-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #fff;
  padding: 10px;
}

.three-images img {
  width: 100%;

  transition: 0.4s;
}

.three-images img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .three-images {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 480px) {
  .three-images {
    grid-template-columns: 1fr;
  }
}
.four-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: #fff;
  padding: 10px;
}

.four-images img {
  width: 100%;

  transition: 0.4s;
}

.four-images img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .four-images {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 480px) {
  .four-images {
    grid-template-columns: 1fr;
  }
}
/* Footer */
footer {
    background: #000;
    color: #fff;
    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: #fff;
  }
 .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: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col ul li a:hover {
    color: #ffd700;
  }

  .social-icons {
    margin-top: 20px;
  }

  .social-icons a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: #ffd700;
    color: #0d0d0d;
    border-radius: 50%;
    font-weight: bold;
    margin-right: 10px;
    transition: all 0.3s ease;
  }

  .social-icons a:hover {
    background: #fff;
    color: #111;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
  }

  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .footer-col h3::after {
      left: 50%;
      transform: translateX(-50%);
    }
  }
  .navbar{background:#330b0b;padding:10px 20px;}
.nav-container{display:flex;justify-content:space-between;align-items:center;}
.logo{color:#ffcc00;font-size:20px;font-weight:bold;}
.menu-icon{color:#ffcc00;font-size:26px;cursor:pointer;display:none;}
.nav-links a{color:#ffcc00;margin:0 15px;text-decoration:none;font-weight:bold;}

@media(max-width:768px){
 .menu-icon{display:block;}
 .nav-links{display:none;flex-direction:column;background:#330b0b;text-align:center;width:100%;padding:10px 0;}
 .nav-links a{display:block;margin:10px 0;}
}