.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2b2b2b;
    color: #d4af37;
    padding: 10px 20px;
    position: relative;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 18px;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    position: relative;
    text-align: center;
    padding: 10px 15px;
  }
  .nav-links li:hover {
    position: relative;
    text-align: center;
    padding: 10px 15px;
    background-color: #555;
  }
  .nav-links a {
    text-decoration: none;
    color: #997b55;
    font-weight: 500;
    padding: 10px 15px;
  }
  
  /* Submenu */
  .submenu-container {
    position: relative;
  }
  
  .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #444;
    display: none;
    position: absolute; /* Prevents affecting the navbar height */
    top: 100%; /* Position submenu below the parent */
    left: 0;
    width: 250px; /* Adjust the width as needed */
    z-index: 10;
  }
  
  .submenu li {
    padding: 10px 15px;
    text-align: left;
  }
  
  .submenu a {
    color:#997b55;
  }
  
  .submenu li:hover {
    background-color: #555;
  }
  
  /* Hover Behavior for Desktop */
  .submenu-container:hover .submenu {
    display: block;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: #d4af37;
    margin: 4px 0;
  }
  
  /* Close Button */
  .close-btn {
    display: none;
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
  }
  
  /* Desktop View */
  @media (min-width: 769px) {
    .nav-links {
      display: flex;
      flex-direction: row;
    }
  
    .hamburger,
    .close-btn {
      display: none;
    }
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  
    .nav-links.active {
      max-height: 400px; /* Adjust based on number of items */
    }
  
    .submenu {
      display: none;
      position: static;
      background-color: #2b2b2b;
    }
  
    .submenu.active {
      display: block;
    }
  
    .hamburger {
      display: flex;
    }
  
    .close-btn.active {
      display: block;
    }
  }
  


.paradiv{
    width: 60%;
    /* float: left; */
    margin: auto;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 40px;
    margin-top: 50px;
}

.paradiv p{
    font-size: 22px;
    line-height: 25px;
    font-style:oblique;

}



/* Comment  Form */

.comment-form {
    max-width: 950px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .comment-form h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  
  .comment-form p {
    font-size: 14px;
    color: #555;
  }
  
  .comment-form .required {
    color: red;
  }
  
  .comment-form textarea {
    width: 100%;
    height: 100px;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .comment-form .input-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .comment-form .input-group input {
    flex: 1;
    min-width: calc(33.333% - 10px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
  }
  
  .comment-form .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .comment-form .checkbox-group input {
    margin-right: 10px;
  }
  
  .comment-form button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
  }
  
  .comment-form button:hover {
    background-color: #0056b3;
  }
  


/* Footer */

footer {
    background-color: #222;
    color: #fff;
    padding: 40px 20px;
    margin-top: 50px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-column {
    flex: 1;
    margin: 10px;
    min-width: 200px;
    color: white;
  }
  .footer-column p{
    color: white;
    margin-top: 15px;
    font-size: 16px;
  }
  .footer-column h4 {
    font-size: 12px;
    margin-bottom: 15px;
    text-transform: uppercase;
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-column ul li a:hover {
    text-decoration: underline;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    margin-left: 20px;
  }
  
  .social-icons a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
  }
  
  .social-icons a:hover {
    color: #007bff;
  }
  
  .buttons {
    margin-top: 20px;
  }
  
  .buttons a {
    display: inline-block;
    background: #555;
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    margin-right: 10px;
    font-size: 10px;
    margin-bottom: 20px;
    margin-left: 50px;
  }
  
  .buttons a:hover {
    background: #333;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: 15px;
  }
  
  .footer-bottom a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  .designdiv{
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    position: relative;
    font-size: 14px;
  }
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content span {
    color: #fff;
  }
  
  .footer-content a {
    color: #f00;
    text-decoration: none;
  }
  
  .footer-content a:hover {
    text-decoration: underline;
  }
  .designdiv{
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    position: relative;
    font-size: 14px;
  }
  .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-content span {
    color: #fff;
  }
  
  .footer-content a {
    color: #f00;
    text-decoration: none;
  }
  
  .footer-content a:hover {
    text-decoration: underline;
  }
  
  
  /* Whatapp button */
  .whatsapp-container {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 1000;
  }
  
  .whatsapp-button {
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
  }
  
  .whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
  }
  
  .whatsapp-button i {
    font-size: 28px;
  }
  
  .tooltip {
    position: absolute;
    bottom: 70px;
    right: 10px;
    background-color: #25D366;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
  }
  
  .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #25D366 transparent transparent transparent;
  }
  
  .whatsapp-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
  }
  