body {
  font-family: "Roboto", sans-serif;
  background: white;
  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; 
    }
}



.banner-bg {
        background: linear-gradient(rgba(0, 0, 0, 0.417), rgba(0, 0, 0, 0.553)), 
                url('../images/join.png');

  /*background-image: url('../images/join.png');*/
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  background-position: center;

}

.banner {
  height: 530px;
  padding: 10px 50px;
  background: rgba(9, 9, 9, 0.1);

  margin-bottom: 10px;
  /* For browsers that do not support gradients */

  img {
    width: 20%;
    margin-left:
      40%;
  }

  h1 {
    margin-top: 12%;
    width: 90%;
    margin-left: 5%;
    text-align: center;
    font-size: 120px;
    color: white;
    /*background-image: linear-gradient(to bottom left, #861c21, #e33539);*/
    /* background: -webkit-linear-gradient(#ffffff, #3a3636); */
    /* -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  }

  p {
    font-size: 25px;
    width: 65%;
    margin-left: 18%;
    text-align: center;
    color: rgb(253, 249, 249);
  }
}

@media(max-width:1000px) {
  .banner {
    h1 {
      font-size: 90px;
    }
  }
}

@media(max-width:768px) {
  .banner-bg {


    height: 300px;
  }

  .banner {
    height: 280px;

    padding: 10px;

    h1 {
        margin-top: 25%;
      font-size: 50px;
    }

    p {
      width: 100%;
      margin: 0;
      font-size: 16px;
    }
  }
}

.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;
  }
}





@media(max-width:768px) {
  .loading-card-top {
    display: grid;
    grid-template-columns: auto;
  }
}

.breadcrumbs-container {
  
  margin-left: auto !important;
  margin-right: auto !important;
}

.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;


}


.breadcrumbs-title img {
  width: 55%;
  margin-left: 20%;

}

.address {
  font-size: 14px;
  color: #ffffff;
}

.adressinfo {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
}

address a {
  color: #ffffff;
  text-decoration: none;
}

.container {
  margin: 50px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.container h5 {
  text-align: center;

  font-size: 30px;
}

label {
  display: block;
  margin: 15px 0 5px;
  color: black;
}

input,
select,
textarea {
  width: 95%;
  padding: 10px;
  margin: 5px 0 15px;
  border: 1px solid #ccc;
  border-radius: 4px;

}

.submit-button {
  background-color: #28a745;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-button:hover {
  background-color: #218838;
}

.contact-main {
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.content2 {
  max-width: 1500px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.main-left {
  display: grid;
  grid-template-columns: auto auto auto;
  padding: 20px 50px;
}

.office {
  margin-left: 50px;
  height: 300px;
  padding: 20px;

}

.breadcrumbs-title p {
  padding: 10px 50px;
  width: 70%;
  text-align: center;
  margin-left: 12%;
  font-size: 25px;
}

@media(max-width:768px) {
  .main-left {

    grid-template-columns: auto;
    padding: 20px 50px;
  }

  iframe {
    width: 65%;
    height: 80%
  }

  .office {
    margin-left: 0;
  }

  .breadcrumbs-title p {
    padding: 10px 20px;
    width: 90%;
    text-align: center;
    margin-left: 0;
    font-size: 25px;
  }
}


.footer {
  max-width: 1200px;
  margin-left: auto !important;
  margin-right: auto !important;
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: #000000;
}

.footer-column {

  text-align: left;
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 22px;
  color: #8e0028;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 5px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #6a60f9;
}

@media(max-width:768px) {
  .footer {
    display: block;
  }

  .newsletter-container {
    width: 70%;
  }
}

.address {
  font-size: 14px;
  color: #ffffff;
}

.adressinfo {
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
}

address a {
  color: #ffffff;
  text-decoration: none;
}

.footer-column {

  h5 {
    color: #edf1f5;
    font-size: 20px;
    margin: 0;
    margin-top: 5px;

  }

  p {
    color: #ffffff;
  }

  input {
    width: 90%;
    height: 20px;
  }

  button {
    margin-top: 5px;
    padding: 5px 10px;

  }
}

.social-icons {
  display: flex;

  li {
    padding-right: 15px;
  }

  i {
    font-size: 40px;
  }
}

.copy-right {
  background-color: #0b0b0b;

  text-align: center;
  padding-top: 5px;
  padding-bottom: 10px;

  h5 {
    color: #8e0028;
    font-size: 16px;
  }

  p {
    color: #ffffff;
    font-size: 14px;
  }
}

.footer-bg {
  background-color: #000000;
  margin: 0;
}body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.map-wrapper,
.form-wrapper {
  flex: 1;
  min-width: 45%;
  margin: 10px;
  box-sizing: border-box;
}

.map-wrapper {
  display: flex;
  flex-direction: column;
}

.map-wrapper iframe {
  flex: 1;
  width: 100%;
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.form-wrapper:hover,
.map-wrapper iframe:hover {
  transform: scale(1.02);
}

.form-wrapper h5 {
  color: #920E1E;
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.form-wrapper label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: bold;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-wrapper input:focus,
.form-wrapper select:focus,
.form-wrapper textarea:focus {
  border-color: #920E1E;
  box-shadow: 0 0 5px rgba(146, 14, 30, 0.5);
  outline: none;
}

.submit-button {
  width: 100%;
  padding: 12px;
  background-color: #920E1E;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.submit-button:hover {
  background-color: #7e0c1a;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .container {
      flex-direction: column;
      align-items: center;
  }

  .map-wrapper,
  .form-wrapper {
      min-width: 100%;
      margin: 10px 0;
  }
}

.footer-column {

  h5 {
    color: #edf1f5;
    font-size: 20px;
    margin: 0;
    margin-top: 5px;

  }

  p {
    color: #ffffff;
  }

  input {
    width: 90%;
    height: 20px;
  }

  button {
    margin-top: 5px;
    padding: 5px 10px;

  }
}





footer{
  background: #D31027;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #000000, #50020b);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #000000, #50020b); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  width: 100%;
}
footer .content{
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}
footer .content .top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.content .top .logo-details{
  color: #fff;
  font-size: 30px;
}
.content .top .media-icons{
  display: flex;
}
.content .top .media-icons a{
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s ease;
}
footer .content .link-boxes{
  width: 100%;
  display: flex;
  justify-content: space-between;
}
footer .content .link-boxes .box{
  width: calc(100% / 5 - 10px);
}
.content .link-boxes .box .link_name{
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}
.link-boxes .box .link_name::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}
.content .link-boxes .box li{
  margin: 6px 0;
  list-style: none;
}
.content .link-boxes .box li a{
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}
.content .link-boxes .box li a:hover{
  opacity: 1;
  text-decoration: underline;
}
.content .link-boxes .input-box{
  margin-right: 55px;
}
.link-boxes .input-box input{
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;

  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}
.link-boxes .input-box input::placeholder{
  color: #AFAFB6;
  font-size: 16px;
}
.link-boxes .input-box input[type="button"]{
  background: #A40303;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}
.input-box input[type="button"]:hover{
  opacity: 1;
}
footer .bottom-details{
  width: 100%;
  background: #D31027;  /* fallback for old browsers */
background: -webkit-linear-gradient(to right, #000000, #50020b);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to right, #000000, #50020b); /
}
footer .bottom-details .bottom_text{
  max-width: 1250px;
  margin: auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
}
.bottom-details .bottom_text span,
.bottom-details .bottom_text a{
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.bottom-details .bottom_text a:hover{
  opacity: 1;
  text-decoration: underline;
}
.bottom-details .bottom_text a{
  margin-right: 10px;
}
@media (max-width: 900px) {
  footer .content .link-boxes{
    flex-wrap: wrap;
  }
  footer .content .link-boxes .input-box{
    width: 40%;
    margin-top: 10px;
  }
}
@media (max-width: 700px){
  footer{
    position: relative;
  }
  .content .top .logo-details{
    font-size: 26px;
  }
  .content .top .media-icons a{
    height: 35px;
    width: 35px;
    font-size: 14px;
    line-height: 35px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 3 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 60%;
  }
  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a{
    font-size: 12px;
  }
}
@media (max-width: 520px){
  footer::before{
    top: 145px;
  }
  footer .content .top{
    flex-direction: column;
  }
  .content .top .media-icons{
    margin-top: 16px;
  }
  footer .content .link-boxes .box{
    width: calc(100% / 2 - 10px);
  }
  footer .content .link-boxes .input-box{
    width: 100%;
  }
}


.contact-container {
  display: flex;
  justify-content: center;
  padding: 20px;
  background-color: #f5f5f5;
}

.contact-row {
  display: flex;
  justify-content: space-evenly;
  width: 100%;
  gap: 20px;
  max-width: 1200px;
}

.contact-office {
  flex: 1;
  margin-bottom: 30px;
  padding: 20px;
  border: 2px solid #8e0028;
  border-radius: 10px;
  background-color: #fff;
}

.contact-heading {
  color: #8e0028;
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-address,
.contact-telephone,
.contact-helpline,
.contact-email,
.contact-sales {
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-email a,
.contact-sales a {
  color: #8e0028;
  text-decoration: none;
}

.contact-email a:hover,
.contact-sales a:hover {
  text-decoration: underline;
}

.about-container {
  width: 80%;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.about-container  h2, h4 {
  color: #BF2B2F;
}

.about-container h2,h4 {
  border-bottom: 2px solid #BF2B2F;
  padding-bottom: 10px;
}

.about-container  h4 {
  margin-top: 30px;
  border-bottom: 1px solid #BF2B2F;
}

.about-container  p {
  margin-bottom: 15px;
}

ul {
  margin-top: 0;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}