/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body {

   width: 100%;
  height: 100%;
  z-index: -2; 
  opacity: 0.3; 
} */
/* body::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  height: 100%;
  
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.3;
} */




/* Cursor_moves_dashed */

.main_block {
  padding: 0 !important;

}

body,
html {
  margin: 0;
  padding: 0;
  height: 100vh;
  /* overflow-x: hidden; */

}

nav {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  width: 100%;
}







/* Styles for the loading spinner */
#loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top: 5px solid #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;

}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* p {

  text-align: justify !important;
} */






.orange-btn {
  background-color: #e68900;
}

.orange-btn:hover {
  background-color: #e68900;
}

/* Header Section */


.grid-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  /* This ensures left and right take equal space, and the center has an automatic size */
  align-items: center;
  text-align: center;
}

.grid-item {
  color: #fff;
  font-size: 18px;
  padding: 20px;
}

.grid-item a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.grid-item.logo {
  text-align: center;
}

.grid-item.logo img {
  max-width: 100px;
  /* Adjust as per your logo's size */
}

.grid-item:first-child {
  justify-self: start;
  /* Ensures the email aligns to the left */
}

.grid-item:last-child {
  justify-self: end;
  /* Ensures the phone aligns to the right */
}

.grid-item a i {
  margin-right: 5px;
}




.icon-text {
  display: flex;
  align-items: center;
  color: white;
}

.email {
  justify-self: start;
  /* Align email to the left */
}

.logo {
  justify-self: center;
  /* Center the logo */
}

.phone {
  justify-self: end;
  /* Align phone to the right */
}

.icon {
  color: white;
  font-size: 24px;
  margin-right: 10px;
  /* Increase spacing between icon and text */
  text-decoration: none;
  transition: color 0.3s ease;
}

.icon:hover {
  color: #ffcc00;
  /* Highlight color on hover */
}

.text-white {
  color: white;
  font-family: Proxima Nova;
}

.grid-item a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.grid-item a i {
  margin-right: 8px;
}

.pading {
  padding: 20px;
}

/* Product cards styling */

.card-dashed-border {
  border: 2px dashed #ccc;
  /* Dashed border */
  border-radius: 10px;
  /* Optional rounded corners */
}

.img-fluid {
  max-width: 80px;
  /* Adjust image size */
}


/* Make sure the card class and dashed border styling is specific enough */
.card.card-dashed-border {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 15px;
  background-color: #fff;
}

.features-list {
  border-top: 1px dashed #ddd;
  border-bottom: 1px dashed #ddd;
  padding: 20px 0;
}

.features-list ul {
  margin: 0;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.features-list li:last-child {
  margin-bottom: 0;
}

.feature-icon {
  font-size: 24px;
  color: #d4a5a5;
  margin-right: 10px;
}

.feature-text {
  font-size: 18px;
  color: #333;
  font-family: Proxima Nova;
}

/*
 Code for images hover */

.bg-container {
  height: 100vh;
  width: 100vw;
  background-size: cover;
}

.one {
  width: 300px;
  height: 300px;
}


/* General styles for the footer container */

.footer-container {
  background: #555555;
  padding-top: 20px;
  width: 100%;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.footer-container .row {
  margin-left: 0;
}

.footer-container h4 {
  font-size: 18px;
  margin-top: 18px;
  color: #fff;
  font-family: Proxima Nova;
}

.footer-container ul {
  list-style: none;
  cursor: pointer;
  text-align: left;
  line-height: 35px;
  padding: 0;
}

.footer-container .col-md-4 {
  display: flex;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: white;
}


.nav-link.active {
  color: blue;
  font-weight: bold;
}

.footer-bottom {
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 17px;
  margin: 0;
  /* Ensure no extra margin */
}

.footer-bottom {
  background: linear-gradient(-45deg, #c0b97a, #e6e6fa);
  padding: 10px 0;
  width: 100%;
  position: relative;
  bottom: 0;
}

#footerCopyright {
  color: #150202;
}

.footer-text {
  font-family: Proxima Nova;
  margin: 0;
  padding: 5px;
  text-align: center;
}

.bottom {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
}

.fss {
  font-size: 3rem;
  font-weight: 700;
}

.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  padding: 6px 20px;
  color: gold;
  font-family: Proxima Nova;
  background-color: #6c6c7d;
}

.left,
.right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo1 {
  width: 40%;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.logo2 {
  width: 17%;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.text {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.text {
  margin: 0;
  text-align: center;
}

.text-white {
  color: #ffffff;
}

.text-white li {
  margin-bottom: 10px;
}

.text-white li a {
  color: #ffffff;
  text-decoration: none;
}

.social-icons {
  display: flex;
  gap: 7px;
  margin-top: 1px;
  cursor: pointer;
}

.social-icons i {
  font-size: 22px;
  color: #fff;


  /* Icon size */
}

.h2 {
  font-family: Proxima Nova;
  color: #ffffff;
}

/* CSS */
.custom-list {
  color: #aaa9b5;
  padding-top: 60px;
  list-style: none;
  margin: 0;
  font-family: Proxima Nova;
}


.whatsapp-icon-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
}

.whatsapp-icon-container:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.logo {
  padding: 10px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-right: 20px;
}

.logo img {
  border-radius: 50%;
  padding: 2px;
}

.grid-item a {
  font-size: 20px;
  color: inherit;
  text-decoration: none;
}

.grid-item i {
  font-size: 24px;
  margin-right: 5px;
  font-family: Proxima Nova;
}



.menu-logo {
  width: 50px;
  /* Adjust as needed */
  height: auto;
  vertical-align: middle;
  margin-right: 10px;
  margin-left: 0;
  /* Ensure no left margin is added */
}

.card1 {
  width: 300px;
  padding: 20px;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-bottom: 20px;
}

.card1:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-content1 h6 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #333;
  font-family: Proxima Nova;
}

.card-content1 input[type="text"] {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
  font-size: 14px;
}

.card-content1 button {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
  background-color: #4caf50;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}

.card-content1 button:hover {
  background-color: #45a049;
}

.card-content1 input[type="text"]::placeholder {
  color: #888;
  font-style: italic;
}

/* Subscribe */

.subscribe {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(135deg, #f0f4f8, #ffffff);
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.subscribe__title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.subscribe__copy {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Updated form-group layout for horizontal alignment */
.form-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form__label {
  width: 100px;
  /* Adjust label width for consistency */
  font-size: 1rem;
  font-weight: 600;
  margin-right: 15px;
  color: #555;
  text-align: right;
  /* Align the text to the right */
}

.form__input,
.form__textarea {
  flex: 1;
  /* Input takes up the remaining space */
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 1rem;
  background-color: #f9f9f9;
  transition: border-color 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  border-color: #3498db;
  outline: none;
}

/* Adjusting the submit button and form layout */
.form__button {
  margin-top: 20px;
  padding: 12px 25px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.form__button:hover {
  background-color: #2980b9;
}

.form__button:active {
  background-color: #1a5d8e;
}



.notice {
  width: 345px;
}

.navbar {
  padding: 0.2rem 1rem;
}

.navbar-brand img {
  width: 60px;
  height: auto;
}

.navbar-nav .nav-link {
  font-size: 14px;
}

/* Sticky navbar */
.sticky-top {
  position: sticky;
  top: 0;
  z-index: 100000;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-container {

  position: relative;
  width: 100%;
  height: 590px;
  overflow: hidden;

}

.hero-image {
  width: 100%;
  height: 42rem;
  object-fit: cover;

  object-position: center;

  opacity: 0.6;
  color: white;
  background-color: black;
  transition: opacity 0.3s ease;

}

.hero-video {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 520px;
  object-fit: cover;
  object-position: center;

  opacity: 1.2;
  color: white;
  background-color: black;
  transition: opacity 0.3s ease;

}

.hero-text {
  width: 38rem;
  height: 20px;
  position: absolute;
  top: 30%;
  left: 26%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgb(9, 9, 9);

  transition: none;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 10px;
}

.hero-text h1 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: Proxima Nova;
}

.discover-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #3d9fff;
  color: white;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  background-color: lightcoral;
}



#our-products {
  padding-top: 80px;
  margin-top: -80px;
}

#about-us {
  /* padding-top: 95px; */
  margin-top: -80px;
}

#our-branches {
  padding-top: 27px;
  margin-top: -80px;
}

p {
  font-family: Proxima Nova;
}

.navbar-nav .nav-item .btn {
  border-radius: 5px;
  padding: 6px 20px;
  font-weight: 600;
  margin-right: 10px;
  transition: all 0.3s ease;
 background:#f9c4d3 !important;

  /* color: orange; */
}

.nav-link.btn:hover,
.nav-link.btn.active {
  background-color: #8783aaac !important;
  color: white !important;
}

.home-btn {
  background-color: blue;
  border: none;
}

.about-btn {
  background-color: wheat;
  border: none;
}

.our-products {
  background-color: red;
  border: none;
}

.appoint-btn {
  background-color: #6c757d;
  border: none;
}

.branch-btn {
  background-color: #6c757d;
  border: none;
}

.navbar-nav .nav-item .btn:hover {
  box-shadow: 0px 4px 10px red;
  transform: translateY(-3px);
}

.navbar-nav .nav-item .btn:focus {
  outline: none;

}

/* Styles for select menu */
/* Style for the language select dropdown */
.language-select {
  border-radius: 25px;
  padding: 5px 15px;
  font-weight: 500;
  margin-left: 15px;
  margin-right: 20px;
  transition: all 0.3s ease;
  background-color: #fff;
  border: 1px solid #ced4da;
}

.language-select:hover {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  background-color: #f8f9fa;
}

/* Style for email and phone information */
.email-phone {
  font-weight: 600;
  color: #280202;
  text-align: right;
  white-space: nowrap;
}

/* Align the icons and text to appear in one line */
.nav-item.ms-auto {
  margin-left: auto !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.email-phone i {
  margin-right: 5px;
}

/* Container for grid layout */
.grid-container1 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: start;
}

/* Styling for the image section */
.text-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-section img {
  max-width: 550px;
  height: 590px;
  border-radius: 8px;
}

.text-section h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.text-section p {
  font-size: 16px;
}

/* Styling for the form section */
.form-section {
  padding: 20px;
  border-radius: 8px;
}

/* Styling for the form elements */
.form-group {
  margin-bottom: 15px;
}

.form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form__input,
.form__textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.form__button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form__button:hover {
  background-color: #0056b3;
}



/* Add some spacing for better alignment */
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
}



.map-container {
  position: relative;
  width: 100%;
  height: 250px;
}





.location-icon-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-decoration: none;
  color: #007bff;
  /* Change as needed */
  z-index: 1;
}

.location-icon {
  font-size: 1rem;
  /* Size of the icon */
}

.location-icon-link:hover .location-icon {
  color: #c9302c;
  /* Change color on hover */
}

.location-icon i {
  color: #ff5733;
  font-size: 3rem;
}



.location-icon-link {
  text-decoration: none;
  color: inherit;
}

.location-icon:hover i {
  color: orange;
  /* Change icon color on hover */
}

.branch-title {
  font-weight: bold;
  font-size: 1.2 rem;
  color: #333;

  letter-spacing: 1px;

  transition: color 0.3s ease, transform 0.3s ease;
}

.branch-title1 {
  font-weight: bold;
  font-size: 1.2 rem;
  /* Larger font for visibility */
  color: #333;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.branch-title:hover {
  color: #ff5733;
  transform: scale(1.05);
}

.card-body1 {
  padding: 25px;
  flex: 1 1 auto;
  color: var(--bs-card-color);
}

/* Ensures the map takes up most of the space */
.map-section {
  height: 60%;
  /* Adjust as needed */
}

/* Keeps the address and additional text sections below the map */
.address-section {
  height: 30%;
  color: #ff5733;
}

/* Optional: Styling for additional text */
.text-section {
  height: 10%;
  text-align: center;
  font-size: 1rem;
}

.btn-funky-moon {
  background: #a770ef;
  /* fallback for old browsers */
  background: -webkit-linear-gradient(145deg,
      #fdb99b,
      #cf8bf3,
      #a770ef);
  background: linear-gradient(145deg,
      #fdb99b,
      #cf8bf3,
      #a770ef);
  color: #fff;
  border: 3px solid #eee;
}

.navbar-nav .nav-link {
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-3px);
  background-color: #5471a8;
}

.navbar-toggler {
  border: none;
  outline: none;
}

.language-select {
  background-color: #f8f9fa;
}

.hover-underline {
  position: relative;
}

.hover-underline::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  display: block;
  margin-top: 5px;
  background: bisque;
  transition: width 0.4s;
}

.hover-underline:hover::after {
  width: 100%;
}

/* Container for carousels */
.carousel-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px;
  justify-content: left;
}

/* Carousel styles */
.carousel {
  flex: 1 0 22%;
  max-width: 100%;
  position: relative;
  justify-content: left;
}

/* Adjust carousel control size */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

/* Ensure images cover carousel */
.carousel-inner img {
  width: 100%;
  height: auto;
}

@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}



.left-section img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.right-section {
  padding: 20px;
  background-color: #f8f9fa;
}

.left-section1 {
  padding: 10px;
  background-color: #f8f9fa;
}

.right-section1 {
  width: 100%;
  height: auto;
  border-radius: 6px;
}



.photo {
  margin: 5px auto;
  display: block;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5),
    0 2px 3px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 2px 3px rgba(0, 0, 0, 0.5);
  position: relative;
}

.photo img {
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  display: block;
}

.photo:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear,
      0% 0%,
      0% 100%,
      from(rgba(255, 255, 255, 0.15)),
      to(rgba(0, 0, 0, 0.25))),
    -webkit-gradient(linear, left top, right bottom, color-stop(0, rgba(255, 255, 255, 0)), color-stop(0.5, rgba(255, 255, 255, 0.1)), color-stop(0.501, rgba(255, 255, 255, 0)), color-stop(1, rgba(255, 255, 255, 0)));
  background: -moz-linear-gradient(top,
      rgba(255, 255, 255, 0.15),
      rgba(0, 0, 0, 0.25)),
    -moz-linear-gradient(left top, rgba(255, 255, 255, 0), rgba(255,
        255,
        255,
        0.1) 50%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0));
  background: linear-gradient(top,
      rgba(255, 255, 255, 0.15),
      rgba(0, 0, 0, 0.25)),
    linear-gradient(left top,
      rgba(255, 255, 255, 0),
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0));
}

#chatbox {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 400px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
  display: none;
  /* Initially hidden */
  flex-direction: column;
}

#messages {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  border-bottom: 1px solid #ccc;
}

#input {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ccc;
}

#input input {
  flex: 1;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#input button {
  padding: 5px 10px;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  margin-left: 5px;
}

#input button:hover {
  background-color: #0056b3;
}

.message {
  margin-bottom: 10px;
}

.message.bot {
  color: #007bff;
}

.message.user {
  text-align: right;
  color: #333;
}

#openChatButton {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#openChatButton:hover {
  background-color: #0056b3;
}

/* Media Queries */


@media (max-width: 375px) {
  .fixed-top {
    position: static;
  }
}

@media (max-width: 576px) {

  /* Stack columns vertically */
  .col-md-4,
  .col-md-8 {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0;
  }

  .img-overlay {
    height: 200px;
    background-position: top center;
  }

  h2.heading {
    font-size: 1.5rem;
  }

  p.para,
  .feature-text {
    font-size: 1rem;
  }

  /* List icon adjustments */
  .feature-icon {
    font-size: 1.2rem;
  }

  .col-md-8 {
    padding: 1rem;
  }
}

@media (max-width: 778px) {
  #aboutDescription.text-center.mt-4 {
    margin: 0px !important;
  }

  .hero-text h1 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: Proxima Nova;
  }


}

@media (min-width: 768px) {
  .main_block {
    padding: 0 120px !important;

  }

}

/* For slightly larger mobile screens (375px - 576px) */
@media (min-width: 375px) and (max-width: 576px) {
  .img-overlay {
    height: 250px;
  }

  .col-md-8 {
    padding: 2rem 1rem;
  }

  h2.heading {
    font-size: 1.75rem;
  }

  .features-list ul {
    padding-left: 0;
  }

  .feature-text {
    font-size: 1rem;
  }

  .discover-btn {
    display: none;
  }
}

@media (max-width: 576px) {
  .img-overlay {
    height: 200px;
  }

  h2.heading {
    font-size: 1.5rem;
  }

  .col-12.col-md-4 {
    margin-bottom: 20px;
  }

  .para {
    font-size: 1rem;
  }

  /* Adjust button position if necessary */
  .button {
    margin-top: 20px;
  }
}

/* Media Query for the footer  */
@media (max-width: 375px) {

  #footerEmailTitle,
  #footerEmailList {
    text-align: left;
    align-items: flex-start;
  }



  .navbar-nav .nav-link {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.9rem !important;
  }
}


/* Scroller bar */

.scroll-container {
  position: relative;
  z-index: 99999999;
  overflow: hidden;

}



::-webkit-scrollbar-track {
  background: linear-gradient(45deg, #f0e68c, #e6e6fa);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #6c6c7d;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #324815;
}


/* blogs styles */

.side_Headings {
  font-size: 1.9rem !important;
  text-align: justify;
}


.paragraph_content {
  font-size: 1.6rem !important;
  line-height: 1.7;
  text-align: justify;
}

.cuttingmasterlog {
  max-width: 65px;
}

.cust-h2 {
  color: #000 !important;
  font-size: 1.9rem !important;
  margin: 20px 0 !important;
  font-weight: 500 !important;
}

.blog_img-round {
  width: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;

}

/* know more mobile view in model box */


@media (min-width: 320px) {
  .mobile-VIEw-m{
    margin: 0.4rem 0.5rem 0;
    position: absolute;
    bottom: 2rem;
    right: 4rem;
    font-size: 10px;
  }
}

@media  (min-width:720px){
  .mobile-VIEw-m{
    margin: 0.4rem 0.5rem 0;
    position: absolute;
    bottom: 6rem;
    right: 20rem;
  }
  
}


