@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
#whatsapp-widget .chat-header,
#whatsapp-widget .chat-content,
#whatsapp-widget .message-input {
  position: fixed;
  right: 20px;
  width: 300px;
  background-color: #e5ddd5;
  z-index: 10003;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#whatsapp-widget .chat-header {
  top: calc(100% - 420px);
  height: 60px;
  background-color: #075e54;
  color: white;
  padding: 10px;
  display: none;
  align-items: center;
  border-radius: 12px 12px 0 0;
}
#whatsapp-widget .chat-header .avatar-container {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
#whatsapp-widget .chat-header img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
#whatsapp-widget .chat-header .online-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #25d366;
  border-radius: 50%;
  border: 2px solid #075e54;
}
#whatsapp-widget .chat-header .chat-header-info {
  flex-grow: 1;
}
#whatsapp-widget .chat-header span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  color: #FFF;
}
#whatsapp-widget .chat-header .online-status {
  font-size: 12px;
}
#whatsapp-widget .chat-header .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}
#whatsapp-widget .chat-header .close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#whatsapp-widget .chat-content {
  top: calc(100% - 360px);
  height: 300px;
  padding: 20px;
  overflow-y: auto;
  display: none;
}
#whatsapp-widget .chat-content .message {
  max-width: 80%;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 7.5px;
  position: relative;
  word-wrap: break-word;
}
#whatsapp-widget .chat-content .message.received {
  background-color: #ffffff;
  align-self: flex-start;
}
#whatsapp-widget .chat-content .message.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  margin-left: auto;
}
#whatsapp-widget .message-input {
  bottom: 20px;
  height: 60px;
  display: none;
  padding: 10px;
  background-color: #f0f0f0;
  border-radius: 0 0 12px 12px;
}
#whatsapp-widget .whatsapp-btn {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 12px;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#whatsapp-widget .whatsapp-btn:hover {
  background-color: #128c7e;
}
#whatsapp-widget .typing-indicator {
  background-color: #e5ddd5;
  padding: 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}
#whatsapp-widget .typing-indicator span {
  height: 10px;
  width: 10px;
  float: left;
  margin: 0 1px;
  background-color: #9e9ea1;
  display: block;
  border-radius: 50%;
  opacity: 0.4;
}
#whatsapp-widget .typing-indicator span:nth-of-type(1) {
  animation: 1s blink infinite 0.3333s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(2) {
  animation: 1s blink infinite 0.6666s;
}
#whatsapp-widget .typing-indicator span:nth-of-type(3) {
  animation: 1s blink infinite 0.9999s;
}
@keyframes blink {
  50% {
    opacity: 1;
  }
}
#whatsapp-widget .chat-icon {
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10004;
  animation: wave 2s infinite;
}
#whatsapp-widget .chat-icon img {
  width: 35px;
  height: 35px;
}
@keyframes wave {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}
@keyframes scroll-continuous {
  from {
    transform: translateX(0);
    /* Start from the initial position */
  }
  to {
    transform: translateX(-50%);
    /* Scroll halfway (1 full set of logos) */
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .navbar {
  background-color: #FFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header .navbar .navbar-brand {
  color: #171717;
  margin: 0;
}
header .navbar .navbar-brand img {
  height: 50px;
}
header .navbar .navbar-brand span span {
  color: #171717;
}
header .navbar .navbar-toggler {
  color: #171717;
}
header .navbar .offcanvas {
  width: 100%;
  background-color: #28AE5D;
}
header .navbar .offcanvas .offcanvas-header img {
  height: 50px;
}
header .navbar .offcanvas .offcanvas-header .offcanvas-title {
  color: #FFF;
  font-size: 15px;
}
header .navbar .offcanvas .offcanvas-header .offcanvas-title span {
  color: #E6C000;
}
header .navbar .offcanvas .offcanvas-header .btn-close {
  border-radius: 50px;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav {
  line-height: 30px;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
  color: #FFF;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  margin: 4px 6px;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link a {
  font-weight: 600;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link {
  color: #28AE5D;
}
header .navbar .offcanvas .offcanvas-body .navbar-nav .nav-item:hover .nav-link::after {
  content: "";
  display: block;
  border-bottom: 2px solid #28AE5D;
}
header .active::after {
  content: "";
  display: block;
  border-bottom: 2px solid #28AE5D;
  color: #28AE5D;
}

footer {
  background-color: #253745;
  color: #FFF;
}
footer .address-section {
  padding: 50px 0 0 0;
}
footer .address-section h6 {
  font-style: normal;
  font-weight: 500;
  line-height: 26.4px;
  margin: 0 0 15px 0;
  font-size: 22px;
  color: #FFF;
}
footer .address-section p {
  margin: 0;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: rgb(255, 255, 255);
}
footer .address-section ul {
  margin: 0;
}
footer .address-section ul li {
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  font-size: 15px;
}
footer .address-section ul li a {
  color: #FFF;
  text-decoration: none;
}
footer .address-section #footer-social-list li a {
  display: flex;
  width: 37px;
  height: 37px;
  padding: 15px;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid rgb(255, 255, 255);
  background: #253745;
  color: #FFF;
}
footer .address-section #footer-social-list li i {
  color: #FFF;
}
footer .address-section #footer-contact-list li a {
  color: #E1E1E1;
  font-family: Prompt, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 22px;
}
footer .address-section .contact-address {
  display: flex;
  align-items: center;
}
footer .address-section .contact-address div {
  color: #FFF;
}
footer .address-section .contact-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
footer .address-spacing {
  line-height: 25px;
}
footer .all-rights p {
  color: rgb(225, 225, 225);
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
}
footer .all-rights p a {
  color: #FFF;
  text-decoration: none;
}

.heading {
  font-size: 24px;
  font-weight: 700;
  font-family: "IBM Plex Sans";
}

.sub-heading {
  font-size: 14px;
  font-weight: 700;
  color: #40D17A;
}

.bold-text {
  font-size: 14px;
  font-weight: 500;
}

.low-text {
  font-size: 14px;
  font-weight: 400;
  color: #9B9B9B;
}

#hero {
  position: relative;
  top: 70px;
  width: 100%;
  height: 430px;
  background-size: cover !important;
  margin-bottom: 5rem;
  background-position: bottom !important;
}
#hero .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#hero h1 {
  color: #FFF;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  white-space: nowrap;
}
#hero h2 {
  width: -moz-max-content !important;
  width: max-content !important;
}
#hero img,
#hero video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

#contactPage #contactUs h2 {
  font-size: 22px !important;
}
#contactPage #contactUs .contact-details-margin {
  margin-left: 1rem;
}
#contactPage #contactUs .contact-details-margin a {
  text-decoration: none;
  color: #171717;
}

#aboutPage #aboutUs img {
  transition: transform 0.3s ease;
}
#aboutPage #aboutUs img:hover {
  transform: scale(1.03);
}
#aboutPage #aboutUs .custom-badge {
  display: inline-block;
  background-color: #f0fdf4;
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 2px;
  text-align: center;
}
#aboutPage #aboutUs .about-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 31.2px;
}
#aboutPage #aboutUs .explore-our-work {
  font-size: 20px;
  font-weight: 700;
}
#aboutPage #aboutUs .about-description {
  font-weight: 400;
  color: #737577;
}
#aboutPage #aboutUs .contact-us-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
#aboutPage #aboutUs .contact-us-button img {
  padding-bottom: 2px;
  align-self: center;
}
#aboutPage #aboutUs #videoGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
#aboutPage #aboutUs .grid-item {
  flex: 1 1 100%;
}
#aboutPage #aboutUs #imageGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
#aboutPage #aboutUs #imageGrid .img-grid-item {
  position: relative;
}
#aboutPage #aboutUs #imageGrid .img-grid-item img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
#aboutPage #aboutUs #imageGrid .img-grid-item p {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  padding: 5px;
  margin: 0;
  text-align: center;
}
#aboutPage #aboutUs #imageGrid .img-grid-item img {
  transition: transform 0.3s ease;
}
#aboutPage #aboutUs #imageGrid .img-grid-item img:hover {
  transform: scale(1.01);
}

#packages .package-card {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#packages .package-card .card-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#packages .package-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background 0.3s ease;
}
#packages .package-card .card-overlay .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
#packages .package-card .card-overlay .card-text {
  font-size: 16px;
  line-height: 20px;
}
#packages .package-card:hover .card-overlay {
  background: rgba(0, 0, 0, 0.7);
}

#main-body #heroContent {
  position: relative;
  top: 70px;
  width: 100%;
  height: 600px;
  background-size: cover !important;
  background-position: left !important;
  margin-bottom: 5rem;
}
#main-body #heroContent .hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
#main-body #heroContent h1 {
  color: #FFF;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
#main-body #heroContent h2 {
  width: -moz-max-content !important;
  width: max-content !important;
}
#main-body #heroContent img,
#main-body #heroContent video {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#main-body #heroContent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
#main-body #heroContent .hero-images {
  width: 60px !important;
}
#main-body #heroContent .btn-img {
  width: 15px !important;
}
#main-body #main-content .list-icon {
  width: 20px;
  height: 20px;
}
#main-body #partner-logos {
  overflow: hidden;
  position: relative;
}
#main-body #partner-logos .logo-marquee {
  display: flex;
  width: 300%;
  animation: scroll-continuous 15s linear infinite;
}
#main-body #partner-logos .logo-marquee img {
  max-height: 60px;
  margin: 0 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
#main-body #values {
  background-image: url("../images/background-img.webp");
  position: relative;
  top: 0;
  width: 100%;
  height: 674px;
  background-size: cover;
}
#main-body #values .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
}
#main-body #values .carousel-indicators .active {
  background-color: #28AE5D;
}
#main-body #values::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#main-body #values .card {
  border-radius: 18.25 !important;
}
#main-body #values .value-card {
  min-height: 280px;
}
#main-body #values .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #f5f5f5;
}
#main-body #products .card {
  position: relative;
  overflow: hidden;
}
#main-body #products .card .card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 100%;
  border-radius: 10px;
}
#main-body #products .card .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#main-body #products .card .card-image img:hover {
  transform: scale(1.02);
}
#main-body #testimonial {
  min-height: 350px;
}
#main-body #testimonial .carousel-indicators {
  position: static;
  margin-top: 1rem;
}
#main-body #testimonial .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
}
#main-body #testimonial .carousel-indicators button.active {
  background-color: #28AE5D;
}
#main-body #testimonial .stars i {
  font-size: 0.5rem;
  margin-right: 2px;
}
#main-body #our-projects .custom-badge {
  display: inline-block;
  background-color: #f0fdf4;
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 2px;
  text-align: center;
}
#main-body #our-projects .explore-our-work {
  font-size: 20px;
  font-weight: 700;
}
#main-body #our-projects #videoGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
#main-body #our-projects .grid-item {
  flex: 1 1 100%;
}
#main-body #our-projects #imageGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
#main-body #our-projects #imageGrid .img-grid-item {
  position: relative;
}
#main-body #our-projects #imageGrid .img-grid-item img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
#main-body #our-projects #imageGrid .img-grid-item p {
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #FFF;
  padding: 5px;
  margin: 0;
  text-align: center;
}
#main-body #our-projects #imageGrid .img-grid-item img {
  transition: transform 0.3s ease;
}
#main-body #our-projects #imageGrid .img-grid-item img:hover {
  transform: scale(1.01);
}
/*# sourceMappingURL=style.css.map */