
body,html {
    font-family: 'PT Serif', serif;
    background-color: #ffffff;
     overflow-x: hidden;
       margin: 0;
      padding: 0;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Amazon Ember', sans-serif;
  }
  header {
    background-color:#F2EEE2;
    padding: 20px;
    text-align: center;
  }
  nav {
    padding: 10px;
    text-align: center;
  }
  .navbar {
    justify-content: center; /* Centers the content horizontally */
    align-items: center; /* Centers the content vertically */
  }
  
  .navbar-logo img {
    max-height: 50px; /* Adjust the size of your logo */
    width: auto; /* Maintains the logo's aspect ratio */
    margin-bottom: 20px;
  }
  
  nav a {
    color: #000;
    text-decoration: none;
    margin: 0 30px;
  }
  
  nav a:hover {
    text-decoration: underline;
    color: #AD8957;
  }
  
  
  nav a.active {
    text-decoration: underline; /* Adds underline for active link */
    color: #b48146; /* Active link color */
  }
  
  .breadcrumb {
    font-family: 'PT Serif', serif;
    padding: 0;
    background-color: transparent!important;
    display: inline-block;
    list-style: none;
    margin-bottom: 0px!important;
  }
  
  .breadcrumb-item {
    display: inline;
    color: #666;
  }
  
  .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    margin-left: 0px;
    margin-right: 0px;
  }
  .breadcrumb>.active {
    color: #000000 !Important;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #666;
  }

  .benifits
  {
      padding-left: 50px;
      padding-right: 50px;
  }
  p{
    text-align: justify;
  }
  
  h3 {
  margin: 0;
  color: #c19666;
  text-align: justify;
  font-size: 29px;
  font-weight: 100;
  margin-left: 30px;
  }

  main {
    padding: 20px;
    padding-top: 5px;
  }

  .presence-section {
    text-align: center;
    padding: 20px 0;
    font-family: 'PT Serif', serif;
  }

  .presence-grid {
    margin-right: 80px;
    margin-left: 80px;
    display: flex;
    flex-wrap: nowrap;
    gap: 15px;
    flex-direction: row-reverse;
    justify-content: center;
  }

  .presence-item {
    width: 350px;
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
  }
  
  .presence-item img {
    max-width: 100px;
    margin-bottom: 15px;
  }
  
  .presence-item h3 {
    font-family: 'Amazon Ember', sans-serif;
    font-size: 20px;
    color: #A3734A;
    margin: 10px 0;
    text-align: center;
  }
  
  .presence-item p {
    color: #555;
    font-size: 13px;
    text-align: center;
  }
  .why-join-us {
    text-align: center;
    background-color: #ffffff;
}

.why-join-us h3 {
    font-size: 38px;
    margin-bottom: 0px;
    color: #b48146;
    font-family: 'Amazon Ember', sans-serif;
}

.why-join-us p {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  color: #333;
  margin:30px;
  margin-top: 20px;
  line-height: 1.8;
  text-align: justify;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    }
    
  @media (max-width: 500px) {
  .content {
    flex-direction: column; /* Stack items vertically */
    text-align: center;     /* Center align text for better mobile view */
  }
  
  .brand-container {
    order: 1;  /* Move text content to the top */
  }
  
  .content img {
    order: 2;  /* Move the image below text content */
    max-width: 100%; /* Full width image for mobile */
  }
  
  .text-content {
    max-width: 600px;
    line-height: 1.6;
    order: 1;
    margin-bottom: auto;
  }
  h3 {
    margin: 0;
    color: #c19666;
    font-size: 29px;
    font-weight: 100;
    justify-self: center;
  }
  .content p {
  max-width: 600px;
  line-height: 1.6;
  margin: auto;
  }
  .content, .container {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 37px;
  flex-direction: column;
  }
  
  .logo-container1 {
  display: flex;
  margin-top: -376px;
  }
  }
  
  header.mobile {
    position: relative;
  }
  
  #menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 15px;
  }
  
  .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333;
    margin: 4px auto;
  }
  
  /* Full-Screen Sliding Menu */
  #sliding-menu {
    position: fixed;
    top: 0;
    left: -100%; /* Hidden off-screen */
    width: 80%; /* Cover entire screen */
    height: 100%;
    background-color: #F2EEE2;
    color: #fff;
    z-index: 1000; 
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  
  #sliding-menu ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 30px;
  }
  
  #sliding-menu ul li {
    margin: 20px 0;
  }
  
  #sliding-menu ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
  }
  
  /* Close Button */
  #close-menu {
    position: absolute;
    top: 0px;
    right: 20px;
    background: none;
    border: none;
    color: black;
    font-size: 40px;
    cursor: pointer;
  }
  
  /* Active Menu */
  #sliding-menu.active {
    left: 0; /* Slide into view */
  }
  
  body.menu-open {
    overflow: hidden; /* Prevent scrolling when menu is open */
  }
  
  
  @media (max-width: 768px) {
  .dektop{
    display:none;
  
  }
  .container{
    display: none;
  }
  .why-join-us h3{
    font-size: 29px;
  }
  .why-join-us p{
    margin: 30px 0px 0px 0px;
  }
  .presence-grid{
    margin-left: 0px;
    margin-right: 0px;
    flex-direction:column;
  }
  .presence-item{
    width:100% !important;
  }
  
  }
  
  @media (min-width: 768px) {
    .mobile{
      display:none;
    }
    .mobile-div{
      display: none;
    }
    }