/* Reset & Font */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins', sans-serif; }
body { line-height:1.6;background: #0b1c14; color:#fff; scroll-behavior:smooth; }

/* Sticky Top Bar */
.top-bar {
    background:#052910;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
    font-size:14px;
    position:sticky;
    top:0;
    z-index:1001;
}
.top-bar .marquee { flex:1; }
.top-bar .top-buttons a {
    color:#fff;
    margin-left:15px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}
.top-bar .top-buttons a:hover { color:#ffca28; }
.three-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  background: #000;
  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;
  }
.top-bar .marquee{
	display:none;
}
}

/* Sticky Header */
header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
    background:#0e3d1c;
    position:sticky;
    top:30px; /* below top-bar */
    z-index:1000;
	box-shadow: 0px 10px;
}
header .logo { font-size:24px; font-weight:700; color:#ffd700; }

/* Navigation */
nav ul { display:flex; list-style:none; }
nav ul li { margin:0 15px; }
nav ul li a { color:#fff; text-decoration:none; padding:15px 0; display:block; font-weight:500; transition:0.3s; }
nav ul li a:hover { color:#ffca28; }
nav .menu-toggle { display:none; font-size:30px; cursor:pointer; color:#fff; padding:10px; }

/* Slider */
.slider { position:relative; max-width:100%; overflow:hidden; margin-top:10px; }
.slider img { width:100%; display:none; animation:fade 1s; }
.slider img.active { display:block; }
@keyframes fade { from {opacity:0.4;} to {opacity:1;} }

/* Sections */
section { padding:60px 20px; }

.services h2{
	text-align:center; text-transform: capitalize;font-size:30px; margin-bottom:30px; position:relative;color:#ffd700;
}
.services h2::after { content:""; width:60px; height:3px; background:#ffca28; display:block; margin:10px auto 0; border-radius:2px; }
/* Scroll Animation */
.animate { opacity:0; transform:translateY(50px); transition:all 1s ease; }
.animate.active { opacity:1; transform:translateY(0);    box-shadow: 0px 16px; }

/* About */

.about h1{
	color:#ffd700;
	text-align:center;
}
.about h2{
	color:#ffd700;
	
}
.about { color:#fff; border-radius:10px; padding:80px 20px; }
.about p { margin:20px auto; font-size:18px; line-height:1.8;text-align: justify; }
.about p strong{
	color:#ffd700;
}
.about ul li{
	list-style:none;
}
.about svg{
	color:#ffd700;
}
/* Services */
.services-container { display:flex; flex-wrap:wrap; justify-content:center; gap:25px; }
.service-box { background:#123c26; padding:20px; width:300px; border-radius:15px; box-shadow:0 4px 15px rgba(0,0,0,0.1); text-align:center; transition:transform 0.3s; }
.service-box:hover { transform:translateY(-10px); }
.service-box a{color:#ffd700;text-decoration:none ;}
.service-box img { width:100%; border-radius:15px; margin-bottom:15px; }
.service-box h3 { margin-bottom:10px; font-size:18px; color:#ffd700; }
.service-box p { font-size:16px; line-height:1.5;color:#fff; }

/* Why Choose Us */
.why-choose h2{
	text-align:center; text-transform: capitalize;font-size:30px; margin-bottom:30px; position:relative;color:#ffd700;
}
.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:#0e3d1c; padding:25px 15px; border-radius:15px; color:#fff; text-align:center; transition:0.3s; }
.why-box i { font-size:40px; margin-bottom:10px; display:block; }
.why-box:hover { background:#052910; transform:translateY(-8px); }

/* Banner */
.banner img { width:100%; border-radius:15px; }
.services-section {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
	box-shadow: 10px 10px;
  }

  .services-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #ffd700;
  }
.services-section h2::after { content:""; width:60px; height:3px; background:#ffca28; display:block; margin:10px auto 0; border-radius:2px; }
  .services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .service-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1 1 calc(33.333% - 40px);
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
  }
.service-card a{color:#0b1c14;text-decoration:none;}
  .service-card img {
    width: 100%;
    
    margin-bottom: 15px;
  }

  .service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
  }

  .service-card p {
    font-size: 0.95rem;
    color: #555;
  }
/* Call Button */
  .call-btn {
    display: inline-block;
    background: #ffd700;
    color: #0b1c14 !important;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: center; /* Center button horizontally */
  }

  .call-btn:hover {
    background: #0e3d1c;
	color:#fff;
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .service-card {
      flex: 1 1 calc(50% - 40px);
    }
  }

  @media (max-width: 600px) {
    .service-card {
      flex: 1 1 100%;
    }
  }
/* Testimonials */
.testimonials h2{
		text-align:center; text-transform: capitalize;font-size:30px; margin-bottom:30px; position:relative;color:#ffd700;
}
.testimonials h2::after { content:""; width:60px; height:3px; background:#ffca28; display:block; margin:10px auto 0; border-radius:2px; }
.testimonial-box { display:flex; flex-wrap:wrap; justify-content:center; gap:25px; }
.testimonial-box strong{ color:#ffd700; }
.testimonial { background:#123c26; padding:25px; width:270px; border-radius:15px; box-shadow:0 4px 15px rgba(0,0,0,0.1); text-align:center; transition:transform 0.3s; }
.testimonial:hover { transform:translateY(-10px); }
.testimonial img { width:60px; height:60px; border-radius:50%; margin-bottom:10px; }

/* Blog */
.blog h2{
	text-align:center; text-transform: capitalize;font-size:30px; margin-bottom:30px; position:relative;color:#ffd700;
}
.blog h2::after { content:""; width:60px; height:3px; background:#ffca28; display:block; margin:10px auto 0; border-radius:2px; }
.blog-container { display:flex; flex-wrap:wrap; justify-content:center; gap:25px;text-align:center; }
.blog-container h3 { color:#ffd700; }
.blog-box { width:300px; background:#123c26; padding:20px; border-radius:15px; box-shadow:0 4px 15px rgba(0,0,0,0.1); transition:transform 0.3s; }
.blog-box a{color:#ffd700;text-decoration:none;}
.blog-box:hover { transform:translateY(-10px); }
.blog-box img { width:100%; border-radius:15px; margin-bottom:10px; }

/* CTA */
.cta { background:#052910; color:#fff; text-align:center; }
.cta a { display:inline-block; margin-top:20px; background:#ffca28; color:#052910; padding:18px 40px; border-radius:50px; font-weight:600; text-decoration:none; transition:0.3s; }
.cta a:hover { background:#ffc107; }

/* Footer */
footer {
    background: #0b1c14;
    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 300px;
    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;
  }

  .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;
  }

  .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%);
    }
  }

/* Floating Buttons */
.floating-buttons { position:fixed; bottom:20px; right:20px; display:flex; flex-direction:column; gap:15px; z-index:1000; }
.floating-buttons a { background:#25d366; color:#fff; padding:18px; border-radius:50%; display:flex; justify-content:center; align-items:center; font-size:22px; text-decoration:none; box-shadow:0 4px 15px rgba(0,0,0,0.3); transition:0.3s; }
.floating-buttons a:hover { transform:translateY(-5px); }

/* Mobile Responsive */
@media(max-width:768px){
    nav ul { display:none; flex-direction:column; background:#0e3d1c; position:absolute; width:100%; top:100%; left:0; border-top:1px solid #052910; }
    nav .menu-toggle { display:block; }
    .services-container, .why-container, .testimonial-box, .blog-container { flex-direction:column; align-items:center; }
}