body {
  font-family: Arial, sans-serif;
  
  margin: 0;
  
}



.navbar{
  margin: 0 auto;
position: sticky;
top: 0;
z-index: 1000;
background-color: #fafafa;
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15);
border-radius: 2px;

}
.navbar__menu {
  

  display: flex;
  justify-content: space-between;
align-items: center;
padding: 10px;
 
}
.menu a{
color: #333;
font-family: "Roboto",sans-serif;
font-weight: 500;
font-size: 20px;
}



.menu {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-wrap: wrap;
}

.menu__item {
display: inline-block;
position: relative;
}

.menu__link {
display: block;
padding: 10px 10px;
color: #fff; /* Navbar link color */
text-decoration: none;
margin-left: 20px;
margin-top: 5px;
transition: all 0.3s ease-in-out;
}
.main-logo img{
width:200px ;
padding-right: 50px;

}
.menu__link:hover {
color: #af0101;
transform: scale(1.1);
}

/* Hide dropdown menu by default */
.dropdown__menu {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #ffffff; /* Dropdown background color */
border-top: 2px solid #fff; /* Dropdown border */
padding: 10px;

z-index: 1; /* Ensure dropdown is above other elements */
a{
  font-size: 15px;
}
}

/* Show dropdown menu on hover */
.menu_item:hover .dropdown_menu {
display: block;
}

/* Show nested dropdown menu on hover */
.dropdown_menu li:hover .dropdown_menu--right {
display: block;
}

/* Style for dropdown items */
.dropdown__menu li {
list-style: none;
position: relative;
}
.main-logo2 img{
display: none;

  }
/* Style for nested dropdown items */
.dropdown__menu--right {
display: none;
position: absolute;
top: 0;
left: 100%;
width: 100%;
background-color: #ffffff; /* Nested dropdown background color */
border-top: 2px solid #fff; /* Nested dropdown border */
padding: 5px 10px;
z-index: 1; /* Ensure nested dropdown is above other elements */
a{
  font-size: 15px;
}transition: all 0.9s ease-in-out;
}

/* Style for links */
.dropdown__item {
display: block;
text-decoration: none;
color: #fff; /* Link color */
padding: 5px 10px;
}

/* Hover effect for links */
.dropdown__item:hover {
 color: #b20603;
transform: scale(1.01); /* Hover background color */
}

/* Mobile styles */
.menu__toggle {
display: none;
 /* Button background color */
/* Button text color */
border: none;
padding: 10px;
font-size: 24px;
}

@media (max-width: 768px) {
.menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  
}

.menu__item {
  width: 100%;
  
}

.menu__toggle {
  display: block;
}

.menu.active {
  display: flex;
  
}
.navbar{
  position: static;
}
.navbar__menu {
  margin: 0;
  /padding: 0;/
  border-radius: 0;
}
.main-logo img{
display: none;
}
.main-logo2 img{
  display: block;
  width: 100px;
  
    }
.navbar button{
  margin-left: 10px;
 margin-bottom: 10px;
 color: #a32d2d;
 background-color:#f9f8f8;
 border: none;
}
.dropdown__menu,
.dropdown__menu--right {
    position: relative;
    left: 0;
    width: 100%;
}

}

@media only screen and (min-width: 769px) {
.toggle-btn {
    display: none;
    
}

.menu {
    display: block; 
}
}

.breadcrumbs-container{
  max-width: 1500px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.breadcrumbs{
  margin-bottom: 50px;
}

.breadcrumbs-title h4{
  font-size: 40px;
            font-weight: bold;
            background-color: red; /* For browsers that do not support gradients */
            background-image: linear-gradient(to bottom left,#861c21,#e33539);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
          
            margin-top: 30px;
            margin-left: 30px;
          
}
.breadcrumbs {
  border: 1px solid #cbd2d9;
  border-radius: 0.3rem;
  display: inline-flex;
  overflow: hidden;
  margin-top: 30px;
  height: 25px;
  margin-left: 30px;
  
}

.breadcrumbs__item {
  background: #fff;
  color: #333;
  outline: none;
  padding: 0.35em 0.35em 0.35em 1.25em;
  position: relative;
  text-decoration: none;
  transition: background 0.2s linear;
  
}

.breadcrumbs__item:hover:after,
.breadcrumbs__item:hover {
  background: #edf1f5;
}

.breadcrumbs__item:focus:after,
.breadcrumbs__item:focus,
.breadcrumbs__item.is-active:focus {
  background: #8e0028;
  color: #fff;
}

.breadcrumbs__item:after,
.breadcrumbs__item:before {
  background: white;
  bottom: 0;
  clip-path: polygon(50% 50%, -50% -50%, 0 100%);
  content: "";
  left: 100%;
  position: absolute;
  top: 0;
  transition: background 0.2s linear;
  width: 1em;
  z-index: 1;
}

.breadcrumbs__item:before {
  background: #cbd2d9;
  margin-left: 1px;
}

.breadcrumbs__item:last-child {
  border-right: none;
  background: #8e0028;
  color:white;
  
}

.breadcrumbs__item.is-active {
  background: #edf1f5;
}
.breadcrumbs a{
  font-size: 12px;
 
  
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
}

 select,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
form button {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  width: 90%;
  box-sizing: border-box;
}

form button {
  background: linear-gradient(45deg, #fb4764, #f88d5f) no-repeat;
  border: none;
  outline: none;
  cursor: pointer;
  color: white;
  padding: 11px 35px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
}

button:hover {
  background-color: #45a049;
}

.flex-class{

  display: flex;
  margin: 0% 10%;
}




.map-wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  height: 600px;
 
}
.map-wrapper h2{
  color: #8e0028;
    text-align: center;
    font-size: 25px;
  
}

.map-wrapper iframe {
  flex: 1;
  width: 100%;
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease;
}


.form-wrapper:hover,
.map-wrapper iframe:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .container {
      flex-direction: column;
      align-items: center;
  }

  .map-wrapper,
  .form-wrapper {
      min-width: 100%;
      margin: 10px 0;
  }
  .flex-class{
      display:block;
  }
}