/* Googlefont Poppins CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
.top-bar {
  background-color: #f8f3ef;
  color: #6b0000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px 55px;
  font-size: 14px;
}

.top-bar .social,
.top-bar .contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.top-bar .social i {
  margin-right: 10px;
}
.top-bar .social i,
.top-bar .contact i {
  color: #6b0000;
  /* margin-right: 5px; */
}

.top-bar .social span {
  margin-right: 10px;
  font-weight: bold;
}

@media (max-width: 600px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

* {
  /* margin: 0;
  padding: 0; */
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* overflow-x: clip; */
}
body {
  min-height: 100vh;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  /* box-shadow: 0px 2px 8px 0px #63636333; */
  z-index: 99;

  z-index: 99;
}
nav .navbar {
  height: 100%;
  /* max-width: 1250px; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  background: #ffffff;
  padding: 0 50px;
  box-shadow: 0px 2px 8px 0px #63636333;
}
.navbar .logo img {
  width: 250px;
}
nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
nav .navbar .links {
  display: flex;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}
nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #000;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 25px;
  left: -350%;
  line-height: 40px;
  width: 1000px;
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .links li .sub-menu a {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3e8da8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3e8da8;
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3e8da8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}
@media (max-width: 920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
    top: 0;
  }
  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  nav {
    /* position: relative; */
  }
  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #ffeaec;
    line-height: 40px;
    /* padding: 20px; */
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
    overflow: auto;
    overflow-x: hidden;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #000;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #000;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

/* .contact-us {
  background: #7d141d;
  padding: 10px 25px;
  border-radius: 50px;
} */

.contact-link {
  display: inline-block;
  padding: 12px 28px;
  background-color: #7d141d;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #7d141d, #ff1e27);
  border-radius: 50px;
  z-index: -1;
  transition: 0.4s ease;
}

.contact-link:hover::before {
  width: 100%;
}

.contact-link:hover {
  color: #fff;
  /* box-shadow: 0 5px 15px rgba(255, 30, 39, 0.4); */
}

.service-link:hover {
  color: #eb3131;
}

.contact-us a {
  color: white;
  text-decoration: none;
}

.custom-tab-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.nav-pills .nav-link {
  border-radius: 0;
  color: #000;
  text-align: left;
  font-weight: 500;
  padding: 8px 20px;
}

.nav-pills .nav-link.active {
  background-color: #f6f0ec;
}

.custom-tab-content {
  flex: 1;
  padding: 24px;
}

.custom-tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-weight: 600;
  margin-bottom: 24px;
}

.custom-tab-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 25px;
}

.custom-tab-items span::before {
  content: "⭘";
  color: #6a0000;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .custom-tab-wrapper {
    flex-direction: column;
  }

  .nav-pills {
    flex-direction: row !important;
    overflow-x: auto;
    border-bottom: 1px solid #eee;
  }

  .nav-pills .nav-link {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    font-size: 14px;
  }
}

div#v-pills-tab {
  width: 35%;
  padding-left: 45px;
  padding-top: 25px;
  border-right: 2px solid #ebebeb;
}

/* button#v-pills-web-tab {
    background: #F4EFEA;
    color: black;
    border-radius: 50px 0 0 50px;
} */

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background: #f4efea !important;
  color: black !important;
  border-radius: 50px 0 0 50px !important;
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 9rem;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(to bottom, #7d141d, #ff1e27);
  margin-top: 160px;
}
.bnr-img {
  position: absolute;
  bottom: 0;
}

.bnr-img img {
  width: 100%;
  height: auto;
}
.hero-section h1 {
  font-weight: 600;
  color: white;
  font-size: 45px;
}
.hero-section p {
  max-width: 600px;
  margin: 1rem auto;
  color: #ddd;
}
.hero-btn {
  margin-top: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
  background-color: #ffffff;
  color: #000000;
  border: none;
}
.bottom-images {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.bottom-images img {
  height: 150px;
}

.logo-carousel {
  overflow: hidden;
  padding: 65px 0;
  background: #fff;
  position: relative;
}

.logo-carousel h5 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

.logo-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 30s linear infinite;
}

.logo {
  width: 250px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px 20px; */
}

.logo img {
  max-width: 100%;
  max-height: 60px;
  /* filter: grayscale(100%); */
  transition: 0.3s;
}

.logo img:hover {
  filter: none;
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .logo-track {
    animation-duration: 20s;
  }
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.stats-section {
  background: linear-gradient(to right, #fff 0%, #ffeef0 100%);
}

.stats-section img {
  /* width: 80%; */
  border-radius: 20px;
}

.stats-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 50px;
    margin-top: 0;
    margin-bottom: 0;
    color: #f61d26;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: bold;
}

.stat-label {
  font-size: 20px;
  color: #555;
}

.stat-box {
  /* text-align: center; */
  /* color: #721010; */
}
.about-stats-section .stat-number {
  color: #721010;
}
@media (max-width: 768px) {
  .stat-box {
    margin-bottom: 0px;
  }
}
.service-card {
  border-radius: 12px;
  border: 1px solid #f1f1f1;
  background-color: #f9f5f3;
  padding: 30px 25px;
  height: 100%;
  transition: all 0.4s ease; /* Smooth transition for all properties */
  box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* Initial box-shadow */
  background: linear-gradient(
    118.39deg,
    #ffffff 4.24%,
    #f4efea 100%
  ) !important;
}

.service-card:hover {
  /* background: linear-gradient(90deg, #7d141d3b, #ff1e2742); */
  transform: scale(1.03); /* Slight zoom on hover */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Soft shadow on hover */
}

.service-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
.service-icon {
  padding: 7px;
  color: #8d2323;
  margin-bottom: 40px;
  border: 2px solid #8d2323;
  display: inline-block;
  border-radius: 8px;
}
.contact-section {
  overflow-x: visible !important; /* Ensure tooltip is not getting clipped */
  position: relative; /* required for tooltip absolute positioning */
  z-index: 1;
}

.colors {
  background: linear-gradient(to right, #500e14, #b6212d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.service-title {
  font-weight: 600;
  color: #8d2323;
  margin-bottom: 10px;
}
.service-text {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
}
.service-link {
  color: #8d2323;
  font-weight: 500;
  text-decoration: none;
}

.tech-section {
  text-align: center;
  margin: auto;
  margin-top: 30px;
}

.tech-section h2 {
  font-size: 34px;
  margin-bottom: 35px;
  font-weight: 700;
}
.tech-section h2 span {
  color: red;
}

.tech-section p {
  color: #666;
  font-size: 14px;
  margin: 10px 0 30px;
}

.tech-tabs {
  display: flex;
  justify-content: space-around;
  border-bottom: 2px solid #ccc;
  overflow-x: auto;
}

.tech-tabs button {
  flex: 1;
  padding: 10px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.tech-tabs button.active {
  color: darkred;
  font-weight: bold;
  border-color: darkred;
}

.tab-panel {
  display: none;
  padding: 20px 0;
  animation: fadeIn 0.5s ease-in-out;
}

.tab-panel.active {
  display: block;
}

.slider-wrap {
  overflow: hidden;
  width: 100%;
}
.mti {
  margin-top: 30px;
}
.slider-scroll {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scrollSlider 15s linear infinite;
  margin-top: 30px;
  margin-bottom: 20px;
}

.slider-scroll img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slider-scroll img:hover {
  transform: scale(1.1);
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .tech-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .tech-tabs button {
    text-align: left;
    padding: 12px 15px;
  }
}

.mt-18 {
  margin-top: 18px;
}

.mt-30 {
  margin-top: -30px;
}

/* Mobile Tab */
.accordion {
  width: 100%;
  max-width: 480px;
  margin: 20px auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  background: white;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
}

.mob-accordion .accordion-header {
  padding: 5px;
  background-color: #e9edf2;
  font-weight: bold;
  cursor: pointer;
}

.accordion-content {
  display: none;
  overflow: hidden;
  padding: 15px 10px;
}

.accordion-content.active {
  display: block;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: fit-content;
  gap: 40px;
  animation: scroll 30s linear infinite;
}

.logo-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .accordion {
    max-width: 100%;
  }
}

.industries-section {
  background: linear-gradient(to bottom, #7d141d, #b11b21);
  border-radius: 30px;
  padding: 60px 20px;
  color: #fff;
  position: relative;
  padding-bottom: 0;
}

.indus img {
  width: 155px;
  position: absolute;
  left: 0;
  top: 0;
}

.indus-right img {
  width: 155px;
  position: absolute;
  right: 0;
  top: 0;
}
.industries-section h2 {
  font-size: 2rem;
  font-weight: bold;
}

.industries-section p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 10px auto 40px;
}

.industry-card {
  background-color: #fff;
  color: #000;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  width: 40px;
  height: 40px;
}

.industry-item {
  text-align: center;
  margin-bottom: 70px;
}

.industry-item .label {
  font-size: 0.9rem;
  font-weight: 500;
}

.industry-card img {
  width: 40px;
  height: 40px;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}

.industry-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.main-box {
  background: #fff;
  border: 1px solid #ff1e2799;
  border-radius: 20px;
  padding: 30px 20px;
  /* max-width: 1000px; */
  margin: 50px auto;
  text-align: center;
}

.main-box h2 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #721010;
}

.main-box h2 span {
  color: red;
}

.grid-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  /* border-top: 1px solid #f6cfcf;
      border-left: 1px solid #f6cfcf; */
}

.feature-box {
  background: linear-gradient(135deg, #fff, #fff5f5);
  /* border-right: 1px solid #f6cfcf;
      border-bottom: 1px solid #f6cfcf; */
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-icon {
  color: red;
  border: 2px solid red;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 40px;
}

.feature-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-desc {
  color: #555;
  font-size: 14px;
  max-width: 250px;
}

@media (max-width: 768px) {
  .grid-box {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .feature-box {
    border-right: none !important;
    border-left: none !important;
  }
}

.award-section {
  padding: 40px 15px;
  background: #ffffff;
  border: 1px solid #ff1e2799;
  border-radius: 10px;
  max-width: 1200px;
  margin: 40px auto;
}
.award-heading {
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #721010;
}
.award-heading span {
  color: red;
}
.award-carousel img {
  width: 100%;
  height: auto;
  /* border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
  transition: transform 0.3s ease;
  padding: 10px;
}
.award-carousel img:hover {
  transform: scale(1.05);
}

.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  height: 100%;
}
.testimonial-card .company {
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.testimonial-card .company i {
  margin-right: 5px;
}
.testimonial-card p {
  color: #333;
}
.testimonial-card .person {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.testimonial-card .person img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: 10px;
}
.testimonial-card .person span {
  font-weight: 600;
  font-size: 0.95rem;
  color: #111;
}
.testimonial-card .person small {
  display: block;
  color: #555;
  font-size: 0.85rem;
}

.testimonial-sec {
  background-color: #751a1a;
}

.testimonial-all-card {
  padding: 0px 90px;
}

.contact-section {
  padding: 40px 0;
}
.contact-images {
  display: grid;
  grid-template-columns: repeat(3, 100px);
  grid-gap: 15px;
  justify-content: center;
}
.contact-images img {
  width: 100px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}
.contact-form {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 8px;
}
.contact-form .btn-submit {
  background-color: #7c0b0b;
  color: white;
  border-radius: 30px;
  padding: 10px 30px;
  border: none;
  width: 100%;
}
.contact-icons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.contact-icons .icon {
  background: #7c0b0b;
  color: white;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
}
@media (max-width: 768px) {
  .contact-images {
    grid-template-columns: repeat(2, 100px);
  }
}

.contact-section {
  background-color: #f4efea;
}

.bg-ftr {
  background: #f4efea;
  position: relative;
  z-index: -1;
}

.ftr-bg img {
  /* width: 760px; */
  position: absolute;
  z-index: -1;
  height: -webkit-fill-available;
  opacity: 0.1;
  left: 0;
  height: -moz-available;
  height: 600px;
}

.ftr-image {
  padding: 50px;
}

.ftr-bg {
  position: relative;
  z-index: 1;
}

.contact-icons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.icon-tooltip {
  position: relative;
  text-decoration: none;
}

.icon {
  width: 50px;
  height: 50px;
  background-color: #7d141d;
  color: #fff;
  font-size: 22px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.icon:hover {
  background: linear-gradient(90deg, #7d141d, #ff1e27);
  transform: scale(1.1);
}

/* Tooltip style */
.icon-tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 65px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

/* Show tooltip on hover */
.icon-tooltip:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

/* Navbar Mobile */
.mobile-nav {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mobile-nav > li {
  padding: 10px;
  position: relative;
}

.mobile-nav a {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  color: #333;
}

.dropdown-menu-content {
  display: none;
  /* padding: 10px 0; */
  background-color: #f9f9f9;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.arrow-rotate {
  transform: rotate(180deg);
}

.accordion-button {
  font-size: 15px;
}

.accordion-body li {
  padding: 5px 0;
  font-size: 14px;
}

.navbar ol,
ul {
  padding-left: 0 !important;
}

.mobile-nav .accordion-header {
  padding: 0 !important;
}
.mobile-nav button.accordion-button {
  padding: 10px;
  font-size: 13px;
  padding-bottom: 5px;
  padding-top: 5px;
}

.mobile-nav .accordion {
  margin: 0 !important;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  outline: none !important;
  box-shadow: none !important;
}

.mobile-nav .accordion-body {
  padding: 0 !important;
  line-height: 30px;
  background: #ffeaec;
}

.mobile-nav .list-unstyled li::before {
  content: "⭘";
  color: #6a0000;
  margin-right: 10px;
}

.mobile-nav button.accordion-button {
  background: linear-gradient(90deg, #7d141d, #ff1e27);
  color: white;
}

.mobile-nav .accordion-button::after {
  background-image: url(../img/down.png) !important;
}

.nav-link:focus,
.nav-link:hover {
  color: #6b0000 !important;
}

nav .navbar .links li a:hover {
  color: #6b0000 !important;
}

footer {
  background: linear-gradient(176.06deg, #6a0b13 -46.73%, #000000 83.35%);
  padding-bottom: 0;
  color: #ffffff;
  padding: 40px 0;
  font-size: 16px;
  position: relative;
  padding-bottom: 0;
}

.footer-img {
  position: absolute;
  left: 23%;
  top: 70px;
  opacity: 0.2;
}
footer a {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}
footer a:hover {
  color: #ffffff;
}
.footer-logo {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}
.social-icons a {
  font-size: 20px;
  margin-right: 15px;
  color: #adb5bd;
}
.social-icons a:hover {
  color: #ffffff;
}
.footer-bottom {
  padding: 15px 0;
  font-size: 14px;
}
.logo-img {
  max-width: 240px;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  footer {
    text-align: center;
  }
  .social-icons {
    margin-top: 20px;
  }
  .footer-column {
    margin-bottom: 30px;
  }
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
  line-height: 35px;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid white;
}

.whatsapp-icon {
  position: fixed;
  bottom: 15%;
  right: 15px;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex !important
;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgb(0 0 0);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 25px -6px rgb(0 0 0);
  animation: effect 5s infinite ease-in;
}

.phone-icon {
  background: #0d6efd;
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 99;
  /* background-color: #25d366; */
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex !important
;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgb(0 0 0);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 25px -6px rgb(0 0 0);
  animation: effect 5s infinite ease-in;
}


.pl-50{
  padding-left: 50px !important;
}