/* Reset body margin to remove white space on top */
body {
  margin: 0;
  font-family: Arial, sans-serif;
   background-color: #fff;
}

/* Top bar with subtle diagonal stripes background */
.top-bar {
  background-color: #004000;
  color: white;
  padding: 6px 15px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
}

/* WhatsApp and Call sections styling */
.whatsapp-number, .call-number {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Links in top bar */
.whatsapp-number a, .call-number a {
  color: white;
  text-decoration: none;
}

/* Marquee container styling with distinct background */
.marquee-container {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  padding: 4px 10px;
  flex-grow: 1;
}

/* Marquee animated text */
.marquee-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 25s linear infinite;
  font-weight: bold;
  font-size: 14px;
  color: #ffc107;
}

/* Marquee animation keyframes */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Images styling */
.image-row img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}
.scroll-banner {
  background-color: black;
  color: white;
  padding: 10px 0;
  position: relative;
  border-bottom: 2px solid red;
  font-weight: bold;
}

.scroll-text {
  font-size: 1.2rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .scroll-text {
    font-size: 1rem;
  }
}
.headerimage-section img {
    width: 100%;
}
body {
  background-color: white;
  font-family: Arial, sans-serif;
}

.scroll-banner {
  background-color: black;
  color: white;
  padding: 10px 0;
  border-bottom: 2px solid #fff;
}

.scroll-text {
  font-size: 1.1rem;
  white-space: nowrap;
}

.main-heading {
  color: #ffc107; /* Yellow color */
  font-size: 2rem;
}

.sub-heading {
  font-weight: bold;
}

.highlight {
  color: #ffc107;
  font-weight: bold;
}

.service-box1 {
  background-color: #fff;
  color: #004000;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  margin: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 1.5rem;
  }

  .scroll-text {
    font-size: 0.9rem;
  }

  .service-box {
    font-size: 0.9rem;
    padding: 10px;
  }
}
.content-section{
    background-color: #004000;
}

/* service-section */
.heading {
  color: #006400;
  font-weight: bold;
}

.subheading {
  color: #444;
  margin-bottom: 40px;
}

.service-card {
  padding: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.service-title {
  color: #ffc000;
  margin: 15px 0 10px;
  font-weight: bold;
}

.image-container {
  margin-bottom: 10px;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
  display: inline-block;
}

.image-container:hover {
  border-color: #006400;
  transform: scale(1.05);
}

.service-img {
  border-radius: 50%;
  transition: border-radius 0.3s;
}

.service-img:active {
  border-radius: 30% !important;
}



.service-card {
  background-color: #004000; /* Dark grey background for card */
  color: white; /* White text for readability */
}

.content-section {
  background-color: #004000;
  color: white;
}
/*why chose us */
/* styles.css */
.why-choose-us {
  background-color: #004000;
  padding: 60px 20px;
  color: #000;
}

.why-choose-us .heading {
  font-weight: bold;
  font-size: 2rem;
  color: #ffc107;
}

.why-choose-us .subheading {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: whitesmoke;
}

.box {
  border: 2px solid white;
  padding: 30px 20px;
  background-color: #004000;
  color: white;
  transition: 0.3s;
}

.box:hover {
  transform: translateY(-5px);
}

.box .icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: white;
}

.box h4 {
  color: #ffc107;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: white;
}

@media (max-width: 768px) {
  .why-choose-us .heading {
    font-size: 1.5rem;
  }

  .box {
    padding: 20px 15px;
  }

  .box h4 {
    font-size: 1rem;
  }

  .box p {
    font-size: 0.9rem;
  }
}
/* testimonials */
.testimonial-section {
  padding: 60px 20px;
  text-align: center;
}

.testimonial-header .subtitle {
  color: #013220;
  font-weight: 600;
  font-size: 20px;
}

.testimonial-header h2 {
  font-size: 36px;
  font-weight: bold;
  color: #013220;
  margin: 10px 0 30px;
}

.slider-container {
  overflow: hidden;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  transition: all 0.5s ease-in-out;
  scroll-behavior: smooth;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
}

.testimonial-card {
  background: #013220;
  color: #fff;
  flex: 0 0 300px;
  border-radius: 15px;
  padding: 60px 20px 20px;
  position: relative;
  scroll-snap-align: start;
  min-height: 300px;
  margin-bottom: 20px;
}

.testimonial-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #ffda00;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}

.testimonial-card h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #ffda00;
  font-weight: bold;
}

.testimonial-card p {
  font-size: 16px;
  margin: 15px 0;
  line-height: 1.6;
}

.testimonial-card span {
  display: block;
  color: #ffda00;
  font-weight: 500;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-slider {
    gap: 20px;
  }
  .testimonial-card {
    flex: 0 0 80%;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 90%;
    padding: 60px 15px 20px;
  }
}

.testimonial-card {
  background: #004000;
  color: #fff;
  flex: 0 0 300px;
  border-radius: 15px;
  padding: 60px 20px 20px; /* reduce top padding */
  position: relative;
  scroll-snap-align: start;
  min-height: 320px;
  margin-top: 50px; /* space for overlapping image */
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #ffda00;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
  background-color: #fff;
}
.btn{
	background-color:#fff;
	margin:5px;
	color:#000;
}
.btn:hover{
	background-color:#ffc000;
	margin:5px;
	color:#000;
}
.btn a{
	text-decoration:none;
	color:#000;
	font-weight:bold;
}
/*our other service */

.section-services {
  padding: 40px 20px;
  text-align: center;

}

.section-services h2 {
  font-size: 2em;
  font-weight: bold;
}

.highlight-key {
  color: #004000;
}

.tagline {
  font-weight: 600;
  margin-bottom: 30px;
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.service-box {
  width: 260px;
  padding: 20px 10px;
  text-align: center;
  position: relative;
  background-color: #004000;
}

.image-wrapper {
  width: 160px;
  height: 160px;
  border: 6px solid #004000;
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: 0 0 0 6px gold;
  overflow: hidden;
  cursor: pointer;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 1s ease;
}

.spin-on-load {
  animation: spinOne 1.5s ease-in-out;
}

@keyframes spinOne {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.line-separator {
  width: 2px;
  height: 30px;
  background: #004000;
  margin: 10px auto;
}

.service-box h3 {
  color: #ffd700;
  font-size: 1.4em;
  font-weight:bold;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 14px;
  color: #fff;
  padding: 0 10px;
}

.icon-wrap {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #ffff;
}

.spin-effect {
  font-size: 22px;
  animation: infiniteSpin 3s linear infinite;
}

@keyframes infiniteSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.icon-phone {
  color: darkred;
}

.icon-whatsapp {
  color: green;
}

@media screen and (max-width: 768px) {
  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .service-box {
    width: 90%;
  }
}

/* footer section */

.footer-section {
  background-color: #013200;
  font-family: 'Segoe UI', sans-serif;
}

.footer-section ul li {
  padding: 5px 0;
  font-size: 16px;
}

.footer-section .disclaimer {
  background-color: #fbcf00;
  color: #111;
  font-size: 14px;
}
