/* Root variables */
:root {
  --primary-color: red;
  --secondary-color: #f8f9fa;
  --text-color-dark: #333;
  --text-color-light: #ffffff;
  --text-color-silver: #c0c0c0;
  --bg-light: #f2f2f2;
  --bg-hover: #e2e6ea;
  --overlay-bg: rgba(39, 2, 2, 0.652);
  --border-color: rgba(255, 0, 0, 0.144);
  --success-color: #28a745;
  --icon-color-white: #ffff;
  --icon-color-dark: black;
  --icon-color-success: #28a745;
  --bs-btn-active-bg: var(--bg-light); /* Customize active background color */
  --bs-btn-active-border-color: var(
    --primary-color
  ); /* Customize active border color */
}

/* Reset */
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
::selection {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

::-webkit-selection {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.default-lh {
  font-size: smaller;
  line-height: 20px;
  font-weight: lighter;
  color: var(--text-color-silver) !important;
}
a {
  color: rgba(var(--primary-color));
  text-decoration: none;
}
.border-secondary {
  border-color: var(--secondary-color) !important;
}
body img {
  border-radius: 15px !important;
}
body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 35px;
  word-spacing: 3px;
}
/* Default styles for the toggle button */
.navbar-toggler {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0.5rem;
  background-color: #df1111; /* Background color for the toggler button */
  border: 1px solid #df1111; /* Border color to match the background */
  border-radius: 0.25rem;
  position: relative;
  transition: background-color 0.3s ease; /* Smooth transition for background color */
}

/* Hide default toggler icon */
.navbar-toggler .navbar-toggler-icon {
  display: none;
}

/* Custom hamburger icon */
.navbar-toggler::before {
  content: "\2630"; /* Unicode character for hamburger icon (☰) */
  font-size: 1.5rem;
  color: #fff; /* White color for the hamburger icon */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Custom close (X) icon */
.navbar-toggler-close {
  display: none;
  font-size: 1.5rem;
  color: #fff; /* White color for the close (X) icon */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Toggle visibility based on checkbox state */
#navbar-toggle:checked ~ .navbar-toggler::before {
  display: none; /* Hide hamburger icon when checked */
}

#navbar-toggle:checked ~ .navbar-toggler .navbar-toggler-close {
  display: block; /* Show close (X) icon when checked */
}

/* Ensure navbar content is displayed when checkbox is checked */
#navbar-toggle:checked ~ .navbar-collapse {
  display: block;
}

/* Ensure navbar content is hidden by default */
.navbar-collapse {
  display: none;
}

.navbar-brand img {
  border-radius: 0px !important;
}
.sticky-element {
  top: 0 !important; /* Stick to the top */
}
.bg-primary {
  background-color: var(--primary-color) !important;
}
.nav-link {
  position: relative;
  padding-bottom: 5px; /* Adjust padding as needed */
  transition: color 0.3s ease; /* Optional: smooth color transition */
}
.btn-responsive {
  width: 100%; /* Default width for mobile */
}
@media (min-width: 768px) {
  .btn-responsive {
    width: 25%; /* Width for tablets and larger devices */
  }
}
.success-list li,
td,
p {
  text-align: justify;
  color: #333 !important;
}
.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px; /* Adjust the height of the border */
  background-color: var(--primary-color); /* Adjust the color of the border */
  transition: width 0.3s ease; /* Smooth transition for border width */
}

.nav-link:hover::before {
  width: 100%;
}
/* Base styles for the button */ /* Base styles for the button */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--text-color-light); /* Text color is white by default */
  background-color: var(
    --primary-color
  ); /* Background color is red by default */
  border: 2px solid var(--primary-color); /* Border color is red by default */
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  /* transition: color 0.4s ease, background-color 0.4s ease,
    border-color 0.4s ease; */
  transition: all 0.3s ease; /* Smooth transition for all properties */
}

/* Create the effect using pseudo-elements */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
  z-index: 0;
}

/* Ensure text is above the pseudo-element */
.btn span {
  position: relative;
  z-index: 1;
}

/* Hover effect */
.btn:hover {
  color: var(--primary-color); /* Text color changes to red on hover */
  background-color: white;
  border-color: var(--primary-color);
  box-shadow: 0px 10px 15px 2px rgba(255, 0, 0, 0.2),
    0 0 0 1px var(--primary-color);
}

.btn:hover::before {
  left: 0; /* Moves the pseudo-element from left to right */
}

/* Active effect */
.btn:active {
  color: var(
    --primary-color
  ) !important; /* Text color changes to red on active */
  background-color: var(
    --bg-light
  ) !important; /* Slightly different background color on active */
  border-color: var(
    --primary-color
  ) !important; /* Border color remains red on active */
}

/* Button with no border */
.btn-danger {
  background-color: var(--primary-color) !important;
  border: none;
}

/* Optional: Apply different styles for the active state with no border */
.btn-danger:active {
  background-color: var(--primary-color) !important;
  border: none;
}

/* Carousel Caption */
.carousel-caption {
  position: absolute;
  text-align: left;
  top: 40% !important;
  left: 50% !important;
  transform: translate(-50%, -30%) !important;
  width: 85%;
}

/* Container */
.table-header {
  font-weight: bold;
  border-bottom: 2px solid #4008085e;
  padding: 10px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.table-cell {
  border-bottom: 1px solid #ddd;
  padding: 10px;
}
.table-cell:last-child {
  border-bottom: none;
}
.table-col {
  border: 1px solid #ddd;

  padding-left: 0px;
  padding-right: 0px;

  box-sizing: border-box;
}
/* Heading */
.heading {
  position: relative;
  margin-bottom: 25px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-block; /* Ensure the heading doesn't take full width of parent */
}

.heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* Adjust this to move the underline closer or further from the text */
  width: 100%;
  height: 1px; /* Adjust the thickness of the underline */
  background-color: red; /* The color of the underline */
}
.heading-3 {
  font-weight: 600;
  color: #ffffff !important; /* Set color to white */
  padding: 80px 0;
  font-size: 3rem;
  text-align: left;
  word-spacing: normal;
}
.heading-4 {
  font-weight: 600;
  color: #ffffff !important; /* Set color to white */
  padding: 20px 0;
  font-size: 3rem;
  text-align: left;
  word-spacing: normal;
}

.container {
  position: relative;
  z-index: 1; /* Ensure the content is above the overlay */
}
.heading-2 {
  font-weight: 600;
}

/* Paragraph */
p {
  color: black;
}

/* Carousel */
.carousel-caption h5 {
  font-size: 3rem;
  color: var(--text-color-light);
  font-weight: 900;
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: auto !important;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  align-items: center;
  border-radius: 10px;
  height: 4%;
  width: 10%;
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 20px;
  height: 20px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: var(--icon-color-dark);
  border: none;
  opacity: 0.5;
  transition: opacity 0.6s ease;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.carousel-indicators [data-bs-target]:active {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.carousel-control-next,
.carousel-control-prev {
  right: 0;
  color: var(--primary-color) !important;
  height: 50px;
  width: 50px !important;
  background-color: rgb(56, 55, 55);
  border-radius: 50px;
  top: 50% !important;
  margin: 0 50px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 1rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  border: 50px !important;
}

.carousel-item img {
  height: 900px !important;
  width: auto;
  display: block;
  max-width: 100%;
  opacity: 0%;
}

.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-bg);
  z-index: 1;
  mix-blend-mode: multiply;
}

/* Feature */
.feature {
  background-color: white;
  padding: 20px;
}
.feature p {
  text-align: start;
}

.feature-1 {
  background-color: var(--primary-color);
  margin-top: -25px;
}

.feature-2 {
  background-color: var(--primary-color);
  margin-top: -25px;
  color: var(--secondary-color);
}
.feature-2 ul li a,
.footer-contries {
  color: var(--secondary-color) !important;
}
/* Gallery Item */
.gallery-item {
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
  transform: scale(1.05);
}

/* Testimonial */
.testimonial {
  padding: 2rem;
  border-radius: 8px;
  color: var(--text-color-light);
}

.testimonial .client-info {
  margin-top: 1rem;
  color: var(--text-color-light);
}

.testimonial .client-name {
  font-weight: bold;
  color: var(--text-color-light);
}

.lead {
  color: var(--text-color-light);
}

.client-position {
  color: var(--text-color-light);
}

/* Alert Container */
.alert-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  z-index: 1050;
}
/* Product Card */
.product-card {
  position: relative;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}
.product-card img:hover {
  transform: scale(1.02) !important;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.5);
  color: var(--text-color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.view-product-btn {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.view-product-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Product Name */
.product-name {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  position: absolute;
  bottom: 0;
  width: 100%;
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #fff;
  font-weight: bold;
}

/* Section 1 */
.section_1 {
  background-color: white;
  padding: 50px 0;
}

.section_1 h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: var(--primary-color) !important;
  text-align: center;
}

/* Section 2 */
.section_2 {
  background-color: var(--secondary-color);
  padding: 50px 0;
  z-index: -1;
  position: relative;
}

.section_2 h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: var(--primary-color) !important;
  text-align: center;
}

/* Why Us */
.why-us .card-body {
  padding: 20px;
}

.why-us .card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.why-us .card-text {
  color: black;
}

/* Transparent Background */
.transparent-bg {
  background-color: rgb(252, 255, 253) !important;
  border-radius: 15px;
  width: 85%;
  margin: auto;
  color: var(--primary-color);
}

/* Brands Section */
.brands-section {
  background-color: #f1f3f5;
  padding: 50px 0;
}

.brands-section h2 {
  margin-bottom: 30px;
  font-size: 2.5rem;
  color: #343a40;
}

.brands-section .card {
  border-radius: 25px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-2 {
  padding: 15px;
  border-radius: 15px;
  border: 1px solid var(--border-color) !important;
  display: flex;

  background-color: white;
  height: 100%;
}

/* .card-2 {
  padding: 10px;
  border-radius: 15px;
  border: 1px solid var(--border-color) !important;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex-direction: column-reverse;
  background-color: white;
  height: 90%;
  width: 80%;
  text-align: left;
} */
.card-2:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.058);
  transform: translateY(-2px);
  transition: 0.5s ease-in-out;
}

.brands-section .card-body {
  padding: 20px;
}

.brands-section .card-title {
  font-size: 1.5rem;
  color: #495057;
}

.brands-section .list-group-item {
  border: none;
  font-size: 1.125rem;
  color: #6c757d;
}

/* Success Factors */
.success-factors {
  display: flex;
  flex-direction: column;
}

.success-title {
  margin-bottom: 1rem;
  color: var(--text-color-light);
}

.success-list {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin: 0;
}

.success-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: black;
}

.icon-style {
  font-size: 1.25rem;
  color: var(--icon-color-dark);
}

.icon-style-1 {
  color: var(--icon-color-white);
}
.icon-style-2 {
  font-size: 1.25rem;
  color: var(--icon-color-success) !important;
}

/* effect */
/* Base style for animated elements */
.animationclass {
  opacity: 0;
  transform: translateY(30px); /* Start from below */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transitions */
}

/* Style when the element is revealed */
.animationclass.on {
  opacity: 1;
  transform: translateY(0); /* Move to its original position */
}

.flag-icon {
  width: 24px; /* Adjust size as needed */
  height: 16px; /* Adjust size as needed */
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px; /* Spacing between flag and text */
}

.bg-overlay {
  position: relative;
  overflow: hidden; /* Ensures content doesn’t overflow out of the container */
}

.bg-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../asset/img/pexels-fauxels-3183197.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5; /* Set the opacity of the background image */
  z-index: -1; /* Place it behind the content */
}

.bg-overlay .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Ensure it's above the image */
}
/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(219, 20, 20, 0.839);
  z-index: 1040;
  display: block;
}

.dropshadow-hover-1 {
  transition: box-shadow 0.3s; /* Add a smooth transition effect */
}

.dropshadow-hover-1:hover {
  box-shadow: 0 0 10px rgb(246, 3, 3); /* Add a drop shadow effect on hover */
}

/* go to top button */

/* Scroll To Top Button Styling */
.go-top {
  position: fixed;
  bottom: 50px;
  right: 20px;
  background-color: white;
  border: 1px solid red;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s, border-color 0.3s, transform 0.3s,
    opacity 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0; /* Initially hidden */
  transform: scale(0); /* Initially scaled down */
  z-index: 9999;
}

/* Button Hover Effect */
.go-top:hover {
  background-color: #f0f0f0;
  border-color: red;
}

/* Show Button with Scaling Effect */
.go-top.show {
  opacity: 1; /* Make the button visible */
  transform: scale(1); /* Scale the button to its normal size */
}

.cta {
  border-right: var(--primary-color) 1px solid;
}

/* dropdown menu */
.dropdown {
  -webkit-animation-name: waveDrop;
  animation-name: waveDrop;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes waveDrop {
  0% {
    opacity: 0;
    -webkit-transform: scaleY(0.5);
    transform: scaleY(0.5);
  }
  50% {
    opacity: 0.5;
    -webkit-transform: scaleY(1.05);
    transform: scaleY(1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
  }
}

@keyframes waveDrop {
  0% {
    opacity: 0;
    transform: scaleY(0.5);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(1.05);
  }
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
/* dorpdown end */
.nav-link-footer::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 0 !important;
  height: 1px !important; /* Adjust the height of the border */
  background-color: var(
    --secondary-color
  ) !important; /* Adjust the color of the border */
  transition: width 0.3s ease !important; /* Smooth transition for border width */
}

.nav-link-footer:hover::before {
  width: 50% !important;
  display: inline !important;
}
.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item a,
.breadcrumb-item.active {
  color: white !important;
}

.box-1 {
  width: 100%;
  height: 80px;
}

.contact-section {
  padding: 60px 0;
}
.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  height: 600px;
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
}

/* loder */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  z-index: 1050; /* Higher than Bootstrap's modal */
}

/* Progress bar */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  z-index: 1050; /* Higher than Bootstrap's modal */
}

/* Progress bar */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  z-index: 1050; /* Higher than Bootstrap's modal */
}

/* Logo styling */
.loader-logo {
  max-width: 150px; /* Adjust as needed */
  margin-bottom: 20px; /* Space between logo and loading text */
}

/* Progress bar container */
.progress-container {
  width: 100%; /* Full width */
  max-width: 100%; /* Ensure it does not exceed viewport width */
  position: absolute;
  bottom: 0; /* Position at the bottom */
  left: 0;
}

.progress-bar {
  height: 5px; /* Thin progress bar */
  background-color: var(--primary-color); /* Use the CSS variable for color */
  transition: width 0.3s ease;
}

.progress-text {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

/* Main content styling */
.main-content {
  display: none;
}

/* end loder */

/* Dot Cursor Styles 
.dot-cursor {
  position: absolute;
  width: 10px;  
  height: 10px;
  border-radius: 50%;
  background-color: red;  
  pointer-events: none; 
  transform: translate(-50%, -50%); 
  transition: transform 0.2s ease, background-color 0.3s ease;  
  z-index: 9999 !important;
}

 
@keyframes pulse {
  0% {
    transform: scale(1.2);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.dot-cursor.animate {
  animation: pulse 1s infinite;  
}
*/
