/* Reset & Font */
* { margin:0; padding:0; box-sizing:border-box; font-family:'Poppins', sans-serif; }
body { line-height:1.6;background: #1d6500; color:#fff; scroll-behavior:smooth; }

/* Sticky Top Bar */
.top-bar {
    background:#1d6500;
    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: #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;
    display: none;
  }
.top-bar .marquee{
	display:none;
}
}

/* Sticky Header */
header {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 20px;
    background:#0e3d1c;
    
    top:30px; /* below top-bar */
    z-index:1000;
	box-shadow: 0px 10px;
}
header .logo { font-size:24px; font-weight:700; color:#fffa24; }

/* 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:bold; transition:0.3s; }
nav ul li a:hover { color:#fffa24; }
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:#fffa24;
}
.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 a{
    color:#fffa24;
    font-weight:bold;
}
.about h1{
	color:#fffa24;
	text-align:center;
}
.about h2{
	color:#fffa24;
	
}
.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:#fffa24;
}
.about ul li{
	list-style:none;
}
.about svg{
	color:#fffa24;
}
/* 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:#fffa24;text-decoration:none ;}
.service-box img { width:100%;     height: 250px;border-radius:15px; margin-bottom:15px; }
.service-box h3 { margin-bottom:10px; font-size:18px; color:#fffa24; }
.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:#fffa24;
}
.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: #fffa24;
  }
.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: #fffa24;
    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:#fffa24;
}
.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:#1d6500; }
.testimonial { background:#fff;color:#000; 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:#fffa24;
}
.blog h2::after { content:""; width:60px; height:3px; background:#fffa24; 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:#fffa24; }
.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:#fffa24;text-decoration:none;}
.blog-box:hover { transform:translateY(-10px); }
.blog-box img { width:100%; border-radius:15px; margin-bottom:10px; }

/* CTA */
.cta { background:#e70808; color:#fff; text-align:center; }
.cta a { display:inline-block; margin-top:20px; background:#fffa24; 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: #fffa24;
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
  }

  .footer-col h3::after {
    content: '';
    width: 50px;
    height: 2px;
    background: #fffa24;
    position: absolute;
    left: 0;
    bottom: -8px;
  }

  .footer-col p {
    line-height: 1.7;
    color: #bbb;
  }
 .footer-col p a {
  text-decoration:none;color:#fffa24;
  }
  .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: #fffa24;
  }

  .social-icons {
    margin-top: 20px;
  }

  .social-icons a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    background: #fffa24;
    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; }
}
/* Section */
.services-section {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Heading */
.section-title {
  font-size: 32px;
  margin-bottom: 5px;
  color: #222;
}

.section-subtitle {
  color: #fff;
  margin-bottom: 30px;
  font-size: 15px;
}

/* List */
.responsive-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* List Item */
.responsive-list li {
  background: #ffffff;
  padding: 20px;
      color: #0b1c14;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.responsive-list li a {
text-decoration:none;
  color: #0b1c14;
}
.responsive-list li i {
  font-size: 22px;
  color: #007bff;
}

/* Hover Effect */
.responsive-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Tablet */
@media (max-width: 900px) {
  .responsive-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .responsive-list {
    grid-template-columns: 1fr;
  }
}



header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 16px;
    background: var(--secondary-color);
    z-index:999;
    gap:12px;
}

.logo{
    display:flex;
    align-items:center;
    flex:1;
    min-width:0;
}

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
    max-width:100%;
}

.logo img{
    display:block;
    max-width:100%;
    height:auto;
    max-height:70px;
    object-fit:contain;
}

/* desktop nav */
nav{
    display:flex;
    align-items:center;
}

header #menu{
    display:flex;
    align-items:center;
    list-style:none;
    margin:0;
    padding:0;
}

header #menu li{
    position: relative;
}

header #menu li a{
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    transition: 0.3s;
}

header #menu li a:hover{
    color: #fffa24;
}

/* Dropdown */
.dropdown-menu{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: auto;
    min-width: 260px;
    max-width: 90vw;
    background: #1d6500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
    z-index: 999;
    padding: 0;
    margin: 0;
    list-style: none;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown-menu li{
    width: 100%;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child{
    border-bottom: none;
}

.dropdown-menu li a{
    padding: 12px 15px;
    color: var(--primary-color);
    white-space: normal;
    line-height: 1.4;
}

.dropdown-menu li a:hover{
    background: #1d6500;
    color: var(--button-color);
}

.dropdown:hover .dropdown-menu{
    display: block;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    line-height:1;
    padding:6px 10px;
}

/* Mobile */
@media (max-width: 991px){
    header{
        padding:8px 12px;
    }

    .dropdown-menu{
          background-color: var(--secondary-color);
    }
    .menu-toggle{
        display:block;
        flex-shrink:0;
    }

    .logo{
        flex:1;
        max-width:calc(100% - 50px);
    }

    .logo a{
        width:100%;
    }

    .logo img{
        max-height:52px;
        width:auto;
        max-width:100%;
    }

   header #menu{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background: var(--secondary-color);
        flex-direction:column;
        align-items:flex-start;
        box-shadow:0 8px 18px rgba(0,0,0,0.08);
        z-index:999;
    }

   header #menu.show{
        display:flex;
    }

   header #menu li{
        width:100%;
    }

   header #menu li a{
        width:100%;
        padding:12px 18px;
    }

    .dropdown-menu{
        position: static;
        display: none;
        box-shadow: none;
        min-width: 100%;
        max-width: 100%;
        border-radius: 0;
        background: #f9f9f9;
    }

    .dropdown:hover .dropdown-menu{
        display: none;
    }

    .dropdown.active .dropdown-menu{
        display: block;
    }

    .dropdown-menu li a{
        padding-left: 30px;
    }
}

@media (max-width: 576px){
    .logo img{
        max-height:45px;
        margin-left: 15px;
    }

    header{
        padding:8px 10px;
        position: sticky;
    }

    .menu-toggle{
        font-size:24px;
        padding:4px 8px;
    }
     header #menu li{
        width:0%;
    }
}