@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,600,700);



html {overflow-x: hidden;scroll-behavior: smooth;}
body {padding:0;margin:0;font-family:Montserrat;background:white;}
	a {text-decoration:none;color:unset;}
div,h1,h2,h3,h4,p,i,a {position:relative;transition:0.4s;}

form,input,textarea,select {font-family:Montserrat;}
.dis_icons img{ height:45px; width:45px; margin:10px; }

html, body {
      height: 100%;
      margin: 0;
      background: url('images/bg/1.jpg') no-repeat center center/cover;
      background-attachment: fixed;
      
      font-family: Arial, sans-serif;
      padding-bottom: 60px; /* space for footer */
    }

    .container {
      max-width: 450px;
      width: 90%;
      /*margin: 2rem auto;*/
      /*padding-bottom: 3rem;*/
    }

    .section-box {
      background-color: rgba(255, 255, 255, 1);
      
      padding: 1.5rem 1.5rem;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
      margin-top: 30px;
    }

    .section-box:first-child {
      margin-top: 0;
    }

    .section-box h2 {
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .section-box p {
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    /*.btn {*/
    /*  margin-top: 10px;*/
    /*}*/

    /* Fixed footer strip */
    footer.footer-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: space-around; /* distributes icons evenly */
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.5);
}


    footer.footer-strip a {
      color: white;
      font-size: 1.5rem;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      font-size: 0.75rem;
      user-select: none;
      transition: color 0.2s ease-in-out;
    }

    footer.footer-strip a:hover {
      color: #0d6efd; /* Bootstrap primary blue */
    }

    footer.footer-strip a .bi {
      font-size: 1.8rem;
      margin-bottom: 2px;
    }
  </style>
  <style>
    .input-group-text {
      background: #111;
      color: #fff;
      font-weight: 600;
      border-radius: 0.5rem 0 0 0.5rem;
    }
    .form-control {
      border-radius: 0;
    }
    .btn-submit {
      border-radius: 0 0.5rem 0.5rem 0;
      font-weight: 600;
    }
    .facebook-icon {
      display: inline-block;
      background-color: #1877f2; /* Official Facebook blue */
      color: white;
      width: 45px;
      height: 45px;
      border-radius: 50%; /* Makes it circular */
      text-align: center;
      line-height: 45px; /* Centers the icon vertically */
      font-size: 22px;
      text-decoration: none;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    /* Hover effect */
    .facebook-icon:hover {
      background-color: #0d65d9; /* Slightly darker blue on hover */
      transform: scale(1.1);
    }
.testimonial-wrapper {
  overflow: hidden;
}

.testimonial-item {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}

.testimonial-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid #ddd;
}

.stars {
  color: #ffc107;
  font-size: 18px;
  margin-bottom: 5px;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
}

.arrow-btn.left { left: 10px; }
.arrow-btn.right { right: 10px; }

.arrow-btn:hover {
  background: #333;
  opacity: 1;
}

/* Dots */
.dots {
  text-align: center;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background: #000;
}