* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
}
a{
    text-decoration: none;text-align: center;
}
.hero {
    height: 80vh; /* or 600px or whatever you want */
    overflow: visible;
    position: relative;
  }
  .hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    width: 100%; /* Adjust width for the slides */
    height: 100%;
    transition: transform 0.7s ease;
  }
  
  .slide {
    flex: 1 0 100%;/*  Ensures each slide takes up the full width */
    background-size: contain; /* Ensures the image fits inside the container without being cropped */
    background-position: center; /* Keeps the image centered */
    background-repeat: no-repeat; /* Prevents image repetition */
    position: relative;
    color: white;
    height: 100%; /* Ensures the slide takes full height */
  }

.content {
    position: relative;
    top: 5%;
    left: 20%;
    right: 5%;
    bottom: 5%; /* ADDED - Gives space at bottom too */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* important */
    z-index: 1;
  }

.hero-heading {
  font-size: 1.5rem;
  width: 42%;
  margin-bottom: 30px;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  padding: 10px;
  background: rgb(0, 0, 0, 0.5);
}
.secondary-head{
    font-size: 1rem;    
    color: #000;
    text-align: center;
    font-weight: bold;
    margin-top: 10px;
     /* text-shadow: 2px 2px 4px rgba(0,0,0,0.7);text shadow for better visibility */
}
.button-box {
  /* background: rgb(255,255,255,0.7); */
  background: rgb(255,255,255, 0.85);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  gap: 10px;
  /* max-width: 300px; */
  width: 16%;
  margin-bottom: 30px; /* ADDED - Give space below buttons */
}
.main-btn{background-color: green!important;font-size: 0.7rem!important;}
.main-btn, .secondary-btn {
  background: #eb6147; /* Orange */
  color: white;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-size: 0.6rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}
.main-btn {
   
    background: #000; /* Orange */
    
    display: flex;
    align-items: center; /* Align icon and text */
    gap: 10px; /* Space between icon and text */
    transition: background 0.3s, transform 0.3s;
  }
  
  .main-btn i {
    font-size: 1rem; /* Icon size */
  }
  
  .main-btn:hover {
    background: #fff; /* Darker orange on hover */
    color: #000;
    border: 1px solid #000;
    transform: scale(1.05); /* Slight zoom effect on hover */
  }
  
  .main-btn:active {
    transform: scale(0.98); /* Slightly reduce size on click */
  }
  

 .secondary-btn:hover {
  
  background: #fff; /* Darker orange on hover */
    color: #eb6147;
    border: 1px solid #eb6147;
}

.testimonial {
  margin-top: auto; /* MAGIC: push testimonial to bottom */
  position: fixed;
  bottom: 4vh;
  right: 20%;
  background: rgba(255, 255, 255);
  color: #000;
  padding: 20px;
  width: 30%;
  font-size: 0.7rem;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
  z-index: 99999;
  height: 192px;
}

.testimonial span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  font-size: 0.6rem;
}

/* Dots */
.dots {
  position: absolute;
  bottom: -5px;
  right: 25%;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999999;
}

.dot.active {
  background: #eb6147;
}
.divider{
  height: 100px;
}
#bgdispMob{
  display: none;
}
/* Responsive */
@media (max-width: 768px) {
  #bgdispMob{
    display: block;
  }
  .slideImage{
    background-size: contain; /* Ensures the image fits inside the container without being cropped */
    background-position: center; /* Keeps the image centered */
    background-repeat: no-repeat; /* Prevents image repetition */
  }
  .slide { background-size: cover;}
  .hero-heading {
    font-size: 0.8rem;
    width: 100%;
    text-align: justify;
    margin-bottom: 2px;
  }
  .button-box{
    width: 100%;
    padding: 10px;
    gap: 3px;
   
  }
  .main-btn{
    font-size: 1rem;
  }
  .main-btn,.secondary-btn{
    padding:8px 20px;
    font-size:0.9rem!important;
  }
  
  .testimonial {
    /* max-width: 45%;  bottom: 0px;*/
    width: 100%;
        left: 0;
        bottom: -3vh;
        height: 234px;
        /* top: 2%; */
        position: absolute;
  }
  .testimonial p{
    font-size: 0.7rem;

  }
  .testimonial span{
    font-size: 0.5rem;
  }

  .hero-slider {
    overflow: hidden;
  }
  .content{
    position: absolute;
    left:5%;
    top: 1%;
  }
  .dots{
    bottom: 3%;
  }
}
