:root {
  --main-color: #06609e;
}
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  background-color: #f0f0f0;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "rajdhani", sans-serif;
  color: var(--main-color);
}

.carousel-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: var(--main-color) !important;

  opacity: 0.6;
}
.carousel-indicators{
  margin-bottom: 0 !important;
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
 background-color: var(--main-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  /* filter: invert(1); makes them white on dark images */
}

  .img-box {
    overflow: hidden;
  }

  .img-box img {
    transition: transform 0.3s ease-in-out;
  }

  .img-box:hover img {
    transform: scale(1.03);
  }

/* Carousel Caption Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


.carousel-item {
  animation: zoomIn 1s ease-out;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.custom-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

/* Logo */
.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hide-mobile {
  display: none;
}

/* Toggle Button */
.menu-btn {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  height: 3px;
  background: #06609e;
  border-radius: 2px;
}

/* Hide checkbox */
.menu-toggle {
  display: none;
}

/* Menu Panel */
.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #fff;
  padding: 20px 20px 20px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

/* When checked, show menu */
.menu-toggle:checked ~ .nav-menu {
  transform: translateX(0);
}

/* Menu list */
.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu ul li {
  margin-bottom: 15px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.nav-menu ul li a:hover {
  color: var(--main-color) !important;
}

/* Desktop */
@media (min-width: 992px) {
  .menu-btn {
    display: none;
  }

  .hide-mobile {
    display: block;
  }

  .nav-menu {
    position: static;
    transform: none;
    height: auto;
    width: auto;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .nav-menu ul {
    display: flex;
    gap: 20px;
  }

  .nav-menu ul li {
    margin: 0;
  }

  .download-btn {
    margin-top: 0;
    margin-left: 20px;
  }
}

.btn {
  background-color: var(--main-color);
  color: #fff !important;
  transition: all 0.3s ease-in-out;
  border: 2px solid var(--main-color);
}
.btn:hover {
  background-color: #fff;
  color: var(--main-color) !important;
  border: 2px solid var(--main-color);
}
/* navbar style */
.download-btn {
  font-size: 17px;
  background-color: var(--main-color);
  color: #fff;
  border: 2px solid #06609e;
}
.download-btn:hover {
  background-color: #fff;
  color: var(--main-color);
  border: 2px solid #06609e;
}



/* about section */

.about-img-box {
  border-radius: 10px;
  /* height: 377px; */
  overflow: hidden;
}
.about-img-box img {
  width: 100%;
  height: 377px;
  object-fit: cover;
}

.button {
  background-color: var(--main-color);
  color: #fff;
  border: 2px solid var(--main-color);
}
.button:hover {
  background-color: #ffffff;
  color: var(--main-color);
  border: 2px solid var(--main-color);
}

.service-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  border-radius: 7px;
  background-color: #fff !important;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.08);
  background-color: var(--main-color) !important;
  transition: all 0.3s ease-in-out;
}

.service-card:hover h5,
.service-card:hover p,
.service-card:hover a,
.service-card:hover i {
  color: #fff !important;
}
.service-number {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 5rem;
  font-weight: 800;
  opacity: 0.06;
  line-height: 1;
}

/* .bi {
  color: var(--main-color) ;
} */

.certificate-box {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.certificate-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 3px 2rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}
.product-card img {
  height: 200px;
  object-fit: cover;
  background-position: center;
  background-size: cover;
}
.product-card {
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 3px 2rem rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

/* faq style */
.custom-faq .accordion-button:focus {
  box-shadow: none;
}
.custom-faq .accordion-button:not(.collapsed) {
  background-color: #06609e;
  border: none;
  box-shadow: none;
  color: #fff;
}

.custom-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.custom-faq .accordion-button {
  border-radius: 10px;
}

.custom-faq .accordion-item {
  border-radius: 12px;
}

.whatsapp-btn:hover {
  background-color: #04b132 !important;
}

footer a:hover {
  color: #e6e7eb !important;
}

.social-icon {
  transition: transform 0.1s ease-in-out;
}
.social-icon:hover {
  transition: all 0.1s ease-in-out;

  transform: scale(1.1);
}


