body {
    font-family: Arial, sans-serif;
  }
  
  .container {
    margin-top: 2rem;
  }
  
  h1 {
    margin-bottom: 1rem;
  }
  
  p {
    font-size: 1.2rem;
  }
  




     /* Top Menu Bar Styling */
     .top-menu {
        background-color: #f8f9fa;
        font-size: 0.9rem;
        padding: 5px 0;
      }
  
      .top-menu .left-info {
        display: flex;
        align-items: center;
        gap: 20px;
      }
  
      .top-menu .social-icons a {
        color: #000000;
        margin-left: 10px;
        text-decoration: none;
        font-size: 1.2rem;
        transition: color 0.3s;
      }
  
      .top-menu .social-icons a:hover {
        color: #000000a4;
      }
  
      /* Set navbar height */
      .navbar {
        background-image: url("https://res.cloudinary.com/dmutmdybm/image/upload/f_auto,q_auto/v1/mpb/mazfczyvo1mwyln7h1gl"); /* Repeat pattern using a linear gradient */
        
      }
  
      /* Logo Styling */
      .navbar .navbar-brand img {
        height: 130px !important; /* Adjust for better responsiveness */
        width: 150px;
      
      }
  
      /* Separator Styling */
      .navbar .navbar-brand .separator {
        /* border-left: 1px solid #fff; */
        height: 100%;
        margin: 0 10px;
      }
  
      /* Navbar items */
      .navbar-nav {
        margin-left: 15px;
      }
  
      /* Set navbar link color to white */
      .navbar-nav .nav-link {
        color: white !important;
        transition: color 0.3s, background-color 0.3s;
        margin-left: 10px;
      }
  
      /* Set navbar link hover color and background */
      .navbar-nav .nav-link:hover {
        color: #b1a525 !important;
        border-radius: 5px;
      }
  
      /* Set navbar link color when active */
      .navbar-nav .nav-link.active {
        color: #b1a525 !important;
        border-radius: 5px;
        font-weight: bold;
      }
      .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* Ensure the dropdown is properly aligned */
      }
      /* Content sections */
      .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
      }
  
      /* Adjust section padding for different screen sizes */
      .py-5 {
        padding-top: 5rem;
        padding-bottom: 5rem;
      }
  
      @media (max-width: 768px) {
       
        /* Hide left-info on small screens */
        .top-menu .left-info {
          display: none;
        }
  
        /* Smaller devices like phones */
        .navbar-brand img {
          height: 60px;
        }
  
        .navbar .separator {
          display: none; /* Hide separator on small screens */
        }
  
        .navbar-nav {
          text-align: center;
          margin-top: 10px;
        }
  
        .top-menu .social-icons a {
          font-size: 1.1rem;
        }
  
        .container {
          padding: 0;
        }
  
        /* Make content sections responsive */
        .container-fluid.py-5 {
          padding-top: 3rem;
          padding-bottom: 3rem;
        }
        .offcanvas-end{
          width: 80% !important;
        }
  
        /* Change hamburger menu icon color to white */
        .navbar-toggler-icon {
          background-image: none; /* Remove the default background image */
          background-color: white !important;
        }
        .offcanvas-header {
        background-color: #000000 !important; /* Example color */
      }
  
      .offcanvas-body {
        background-color: #000000 !important; /* Example color */
      }
   
      }
  
      @media (min-width: 768px) and (max-width: 992px) {
        /* Tablet devices */
        .navbar .navbar-brand img {
          height: 75px;
        }
  
        .container-fluid.py-5 {
          padding-top: 4rem;
          padding-bottom: 4rem;
        }
      }
  
      /* Large devices (desktops) */
      @media (min-width: 992px) {
        .navbar .navbar-brand img {
          height: 90px;
        }
      }
  
      /* Right-side panel styling for navbar */
      .right-panel {
        position: fixed;
        top: 0;
        right: 0;
        width: 250px;
        height: 100%;
        background-color: #000000 !important;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20px;
        z-index: 1050;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
      }
  
      .right-panel .close-btn {
        color: white;
        font-size: 30px;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
      }
  
      .right-panel .navbar-nav {
        margin-left: 0;
        text-align: center;
      }
  
      .right-panel .navbar-nav .nav-link {
        color: #b1a525 !important;
        transition: color 0.3s;
        margin: 10px 0;
      }
  
      .right-panel .navbar-nav .nav-link:hover {
        color: #b1a525 !important;
      }



/* carousel  */
/* Carousel Container */
#carouselExampleCaptions {
    height: 60vh; /* Full viewport height for the carousel */
    overflow: hidden;
}

/* Style the carousel items */
.carousel-item {
    height: 100% !important;
    position: relative; /* Needed to position content inside the item */
}

/* Make sure the images fill the carousel area */
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Content overlay on carousel items */
.carousel-item-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    color: white;
    text-align: start;
    padding: 20rem;
    z-index: 2;
    width: 60%;
}

/* Title style */
.carousel-title {
    font-size: 2rem; /* Default font size */
    margin-bottom: 10px;
}

/* Bold content description */
.carousel-description {
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Small description text */
.carousel-small-description {
    font-size: 1rem;
    margin-bottom: 1rem;
}

/* Button container */
.carousel-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

/* Button styles */
.carousel-buttons .btn {
    padding: 10px 20px;
    font-size: 1rem;
}

/* Primary and Secondary Button Styles */
.carousel-buttons .btn-primary {
    background-color: #000000;
    border-color: #000000;
}

.carousel-buttons .btn-secondary {
    background-color: #b1a525;
    border-color: #b1a525;
}

/* Carousel control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: black;
}

/* Carousel navigation buttons width */
.carousel-control-prev,
.carousel-control-next {
    width: 10% !important;
}

@media (min-width: 1068px) {
 /* Adjust the height of the carousel to fit smaller screens */
 #carouselExampleCaptions {
  height: auto; /* Allow it to scale naturally */
  width: 100%;
}

/* Adjust carousel item content positioning */
.carousel-item-content {
  padding: 3rem 2rem; /* Less padding for small screens */
  width: 100%; /* Full width for small screens */
}

/* Title size */
.carousel-title {
  font-size: 1rem; /* Smaller font size for small screens */
  margin-bottom: 8px;
}

/* Description font size */
.carousel-description {
  font-size: 2.5rem; /* Smaller font size */
  margin-bottom: 12px;
}

/* Small description font size */
.carousel-small-description {
  font-size: 1rem; /* Slightly smaller font size */
  margin-bottom: 15px;
  width: 60%;
}

/* Button styling */
.carousel-buttons .btn {
  font-size: 0.8rem; /* Smaller buttons */
  padding: 8px 16px; /* Adjust button padding */
}
}


/* Responsive Styles for small screens */
@media (max-width: 768px) {
    /* Adjust the height of the carousel to fit smaller screens */
    #carouselExampleCaptions {
        height: auto; /* Allow it to scale naturally */
        width: 100%;
    }

    /* Adjust carousel item content positioning */
    .carousel-item{
        width: 100%; /* Full width for small screens */
        height: 300px !important;
    }

    /* Title size */
    .carousel-title {
        font-size: 11px; /* Smaller font size for small screens */
        margin-bottom: 8px;
    }

    /* Description font size */
    .carousel-description {
        font-size: 2rem; /* Smaller font size */
        margin-bottom: 12px;
    }

    /* Small description font size */
    .carousel-small-description {
        font-size: 0.875rem; /* Slightly smaller font size */
        margin-bottom: 15px;
    }

    /* Button styling */
    .carousel-buttons .btn {
        font-size: 0.875rem; /* Smaller buttons */
        padding: 8px 16px; /* Adjust button padding */
    }

    
}

/* Additional responsive styles for extra small devices (phone portrait) */
@media (max-width: 580px) {

    /* Further reduce font sizes and button sizes */
    .carousel-title {
        font-size: 12px; /* Even smaller title */
        margin-bottom: 5px;
    }

    .carousel-description {
        font-size: 1.5rem; /* Smaller description */
        margin-bottom: 10px;
    }

    .carousel-small-description {
        font-size: 0.75rem; /* Even smaller text */
        margin-bottom: 10px;
    }

    /* Adjust button styling for small screens */
    .carousel-buttons .btn {
        font-size: 0.75rem; /* Smaller buttons for very small screens */
        padding: 6px 12px;
    }

    
}









.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .grid-item {
    display: flex;
    align-items: center;
    padding: 3rem;
    transition: transform 0.2s ease-in-out;
  }
  
 
  .icon {
    flex-shrink: 0;
    margin-right: 15px;
    color: #b1a525;
  }
  
  .icon img {
    width: 40px;
    height: 40px;
    filter: invert(54%) sepia(92%) saturate(723%) hue-rotate(5deg) brightness(96%) contrast(91%);
  }
  
  .content .title {
    font-family: "Rubik", Sans-serif !important;
    font-size: 22px;
    font-weight: bold;
  }
  
  .content .description {
    font-family: "Inter", Sans-serif !important;
    font-size: 15px;
    color: #808080;
    margin: 0;
    font-weight: 400;
  }
  
  /* Responsive Design */
@media (max-width: 768px) {
    /* Make each grid item a flex container */
    .grid-item {
      display: flex;
      flex-direction: column; /* Stack the content vertically (Image, Title, Description) */
      align-items: center; /* Center the content horizontally */
      text-align: center; /* Center text */
    }
  
    /* Styling for the icon (image) */
    .grid-item .icon img {
      max-width: 80%; /* Adjust image size on smaller screens */
      margin-bottom: 10px; /* Space between the image and the title */
    }
  
    /* Title and Description adjustments */
    .grid-item .content {
      width: 100%; /* Ensure the content section spans full width */
    }
  
    /* Description text adjustments */
    .grid-item .content .description {
      font-size: 14px; /* Adjust the font size for smaller screens */
      color: #666; /* Optional: Lighter text for the description */
      margin-left: 1rem;
    }
  
    /* Margin between the grid items */
    .grid-item {
      margin-bottom: 1px; /* Space between grid items */
    }
  }



  .full-screen-line {
    border: none;
    border-top: 1px solid #000; /* Customize color and thickness */
    margin: 0;
    padding: 0;
    width: 100vw; /* Full viewport width */
    margin-top: 20px;
  }





  .stats-content {
    display: flex;
    flex-direction: column;
    gap: 5px; /* Add space between the title and description */
  }
  
  .stats-title {
    font-size: 50px;
    font-weight: 600;
    margin: 0;
    color: #b1a525;
  }
  
  .stats-description {
    font-size: 15px;
    color: #1B1A1A;
    font-weight: 500;
    width: 70%;
  }
  
  .stats-image-container {
    position: relative;
    overflow: hidden; 
    border-radius: 8px;
  }
  
  .stats-image {
    width: 100%; /* Adjust image width to fit container */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.5s ease-in-out; /* Smooth hover effect */
    border-radius: 8px;
  }
  
  .stats-image-container:hover .stats-image{
    transform: scale(1.1); /* Scale up the image slightly on hover */
  }
  
  




  .col-6 h3 {
    font-size: 18px; /* Size for the title */
    font-weight: 500; /* Bold font for emphasis */
    color: #b1a525; /* Color matching your theme */
    margin-bottom: 15px; /* Space below the heading */
  }
  
  /* Description paragraph */
  .col-6 p {
    color: #1B1A1A;
    font-family: "Rubik", Sans-serif !important;
    font-size: 50px;
    font-weight: 500;
    line-height: 1em;
    -webkit-text-stroke-color: #000;
    stroke: #000;
  }
  
  /* Adjusting first paragraph */
  .col-6 p:first-of-type {
    font-weight: bold; /* Make the first paragraph bold */
    color: #1B1A1A; /* Black color for the first paragraph */
  }
  
  /* Additional styling for longer text or emphasis */
  .col-6 p:last-of-type {
    color: #808080;
    font-family: "Inter", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    word-spacing: 3px;
    line-height: 1.3rem;
    margin-top: 30px;
  }

  .col-6  .btn{
    height: 35px;
     width: 150px;
     font-size: 14px;
     font-weight: 600;
     background: #b1a525;
     border: none;
     margin-top: 30px;
 }





 /* Responsive Design */
@media (max-width: 768px) {
    .col-2 {
      flex: 0 0 100%; /* Take full width on smaller screens */
      margin-bottom: 20px;
    }
  
    .col-4 {
      flex: 0 0 100%; /* Take full width on smaller screens */
      text-align: center;
      margin-bottom: 20px;
    }
  
    .col-6 {
      flex: 0 0 100%; /* Take full width on smaller screens */
      text-align: center;
    }
  
    .stats-content {
      align-items: center; /* Center the content in the stats-content */
      text-align: center;
    }
  
    .stats-title {
      font-size: 30px; /* Smaller title on mobile */
    }
  
    .stats-description {
      font-size: 14px; /* Smaller description on mobile */
    }
  
    .stats-image {
      max-width: 100%; /* Ensure image is responsive */
      height: auto;
    }
  
    .col-6 h3 {
      font-size: 24px; /* Smaller font size for h3 on mobile */
    }
  
    .col-6 p {
      font-size: 30px; /* Smaller font size for paragraphs on mobile */
    }
  
    .col-6 .btn {
      width: 20%; /* Make the button take full width on smaller screens */
    }
  }
  
  @media (max-width: 580px) {
    .stats-title {
      font-size: 24px; /* Even smaller title for very small screens */
    }
    .col-6 .btn {
        width: 30%; /* Make the button take full width on smaller screens */
      }
    .stats-description {
      font-size: 12px; /* Even smaller description for very small screens */
    }
  }




  /* Services/ */

.service {
    width: 100%;
    /* background: #000000; */
    background-image: url("https://res.cloudinary.com/dmutmdybm/image/upload/f_auto,q_auto/v1/mpb/mazfczyvo1mwyln7h1gl");
    margin-top: 5rem;
}

.serviceTitle {
    color: #b1a525;            /* Text color */
    font-weight: 500;      /* Make the text bold */
    margin-bottom: 15px;    /* Space below the heading */
    font-weight: bold;
  }
  
  /* Style the p tag (Paragraph) */
  .serviceDescription {
    color: #FFFFFF;
    width: 60%;
    font-family: "Rubik", Sans-serif !important;
    font-size: 50px;
    font-weight: 600;
    line-height: 1em;
  }
.cardsss{
    border-radius: 10px;
    cursor: pointer;
}
.card-img-top{
    border-radius: 10px;
}
.card-text{
    color: #808080;
    font-family: "Inter", Sans-serif !important;
    font-size: 15px;
    font-weight: 400;

}
.card-title-services{
  margin-bottom: 5px;
  color: #1B1A1A;
  font-family: "Rubik", Sans-serif !important;
  font-size: 22px;
  font-weight: bold;
}
.btn-service{
    background: none;
    color: #b1a525;
    text-decoration: none;
    font-weight: bold;
}
.btn-service:hover{
    background: none;
    color: #b1a525;
}
/* Custom styles for responsiveness */
@media (max-width: 768px) {
    .cardsss {
      margin-bottom: 20px; /* Add space between cards on small screens */
    }
  }
  
  @media (max-width: 576px) {
    .cardsss {
      margin-bottom: 15px; /* Add more spacing on extra-small screens */
      width: 100% !important;
      margin-left: 3.5rem;
    }
    .serviceTitle{
      font-size: 16px;
      text-align: center;
      align-items: center;
      width: 100%;
    }
    .serviceDescription{
      font-size: 16px;
      text-align: center;
      align-items: center;
      width: 100%;
    }
   
  }



  .selling .card {
    position: relative;
    overflow: hidden;
    border: none;
    height: 350px;
    transition: transform 0.3s ease-in-out;
  }
  
  .selling .card:hover {
    transform: scale(1.05); /* Optional zoom effect on the card */
  }
  .saleDescription{
    color: #000000;
    width: 50%;
    font-family: "Rubik", Sans-serif !important;
    font-size: 50px;
    font-weight: 600;
    line-height: 1em;
  }
  .selling .card-body-selling {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
    transform: translateY(30px); /* Initially move the body down slightly */
    transition: transform 0.4s ease-in-out;
  }
  .card-title-selling{
    font-weight: 600;
    font-size: 16px;
    line-height: 2.5em;
    letter-spacing: 0.3px;
    font-family: "Rubik", Sans-serif !important;
    text-transform: inherit;
    color: #1b1a1a;
  }
  .card-text-selling{
    font-weight: bold;
    font-size: 18px;
  }
  .selling .btn-sell {
    background: #b1a525;
    font-weight: bold;
    height: 40px;
    width: 50%;
    border: none;
    border-radius: 3px;
    opacity: 0;
    transform: translateY(10px); /* Hide the button by moving it down slightly */
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  }
  
  .selling .card:hover .card-body-selling {
    transform: translateY(0); /* Move the body up to its original position */
  }
  
  .selling .card:hover .btn-sell {
    opacity: 1; /* Make the button fully visible */
    transform: translateY(0); /* Move the button into its visible position */
  }
  

  @media (max-width: 576px) {

    .saleDescription{
      font-size: 16px;
      text-align: center;
      align-items: center;
      width: 100%;
    }
   
  }




  



  .image-container {
    position: relative;
    overflow: hidden; /* Ensures the image stays within the container */
    border-radius: 8px;
  }
  .image-container img{
    height: 300px;
  }
  .hover-image {
    width: 100%; /* Adjust image width to fit container */
    height: auto; /* Maintain aspect ratio */
    transition: transform 0.5s ease-in-out; /* Smooth hover effect */
    border-radius: 8px;
  }
  
  .image-container:hover .hover-image {
    transform: scale(1.1); /* Scale up the image slightly on hover */
  }
  

.blogs-card{
  height: 450px;
}
  @media (max-width: 576px) {
    .image-container{
      padding: 15px; /* Add more spacing on extra-small screens */
    }
   
   
  }




  .custom-accordion-button {
    font-weight: bold; /* Make the title bold */
    padding-right: 2rem; /* Add space for the icon */
    background: none; /* Remove the default button background */
    border: none; /* Remove the border */
    position: relative; /* Make sure the positioning is relative to the button */
    transition: color 0.2s ease-in-out; /* Smooth transition for text color */
    font-size: 20px;
    color: #1B1A1A;
}

.custom-accordion-button::before,
.custom-accordion-button::after {
    content: ''; /* Remove any content added by Bootstrap */
    background-image: none !important; /* Prevent default arrow icons */
    font-family: "Rubik", Sans-serif;
    font-weight: 500;
    line-height: 1.4em;
    color: #1B1A1A;
}

.custom-accordion-button::after {
    content: '\f067'; /* Font Awesome icon for the plus sign */
    font-family: 'Font Awesome 5 Free'; /* Specify the font family */
    font-weight: 900; /* Make sure the icon is bold */
    position: absolute;
    right: 1rem; /* Adjust to where you want the icon */
    font-size: 1.5rem;
    color: #000; /* Default icon color */
    transition: transform 0.2s ease-in-out, color 0.2s ease-in-out; /* Smooth transition for icon color */
}

.custom-accordion-button:not(.collapsed)::after {
    content: '\f068'; /* Font Awesome icon for the minus sign */
    font-family: 'Font Awesome 5 Free'; /* Specify the font family */
    font-weight: 900; /* Make sure the icon is bold */
    color: #b1a525 ; /* Change icon color when expanded */
}

.custom-accordion-button:not(.collapsed) {
    color: #b1a525; /* Change text color when expanded */
    font-size: 20px;
}

/* When collapsed, change the color of the header and icon */
.custom-accordion-button.collapsed {
    color: #000000; /* Red color for collapsed state */
}

.custom-accordion-button.collapsed::after {
    color: #000000; /* Change icon color to red when collapsed */
}







/* contact  */

.contact{
    /* background: #6266d0; */
       background-image: url("https://res.cloudinary.com/dmutmdybm/image/upload/f_auto,q_auto/v1/mpb/mazfczyvo1mwyln7h1gl");
}
.contactus {
    color: #FFFFFF;            /* Text color */
    margin-bottom: 15px;    /* Space below the heading */
}
.contactTitle {
    color: #FFFFFF;            /* Text color */
    font-family: "Rubik", Sans-serif;
    font-weight: bold;
    line-height: 1em;
  }
  
  /* Style the p tag (Paragraph) */
  .contactDescription {
    color: #FFFFFF !important;
    font-size: 50px;
    font-weight: 500;
    line-height: 26px !important;
    width: 100%;
  }
  .contact-title-icons{
    font-family: "Rubik", Sans-serif !important;
    font-size: 20px !important;
    font-weight: bold !important;
   
  }

.btn-contact{
    background-color: #6266d0;
    height: 50px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 600;
    font-family: inter;
    border: none;
    border-radius: 8px;
    width: 100%;
}
.btn-contact:hover{
    background-color: #1B1A1A;
  }

  .requestQuote{
    color: #000000 !important; 
    font-size: larger !important;
    font-weight: bold !important;
    padding: 2rem 0 1rem;
  }
  


  @media (max-width: 576px) {

   
   .contact-form{
    padding: 10px;
   }
   .error-box{
    height: 25px;
   }
  }





.card-title-blogs{
  color: #1B1A1A;            /* Text color */
  margin-bottom: 15px;    /* Space below the heading */
  font-weight: bold;
  font-size: 20px;
}

.card-text-blogs-date{
  color: #b1a525;            /* Text color */
  margin-bottom: 15px;    /* Space below the heading */
  font-size: 16px;
}
.card-text-blogs{
  font-size: 15px;
    font-family: 'inter';
    font-weight: 400;
    color: #808080;
}






/* Footer  */

.footer{
  width: 100%;
  background-image: url("https://res.cloudinary.com/dmutmdybm/image/upload/f_auto,q_auto/v1/mpb/mazfczyvo1mwyln7h1gl");
  margin-top: 0rem;
}



.social-icons a {
  margin-right: 15px; /* Adjust the value as needed */
  font-size: 24px; /* Optional: Adjust size of the icons */
  color: #fff; /* Optional: Icon color */
}

.social-icons a:hover {
  color: #333; /* Optional: Hover effect for the icons */
}
.footer-text{
  color: #aaaaaa;
  width: 100%;
  font-size: 18px;
}

.desc {
  color: #aaaaaa;
  transition: color 0.3s ease; /* Optional: Smooth transition */
  cursor: pointer;
  margin-bottom: 1.3rem;
  font-size: 18px;
}

.desc:hover {
  color: #b1a525; /* Change to your desired hover color */
}



@media (max-width: 576px) {

   
  .social-icons {
   margin-bottom: 10px;
  }
  .footer-text{
    padding: 10px;
  }
  .footer-email{
    width: 95%;
    margin-left: 15px;
  }
   .footer-sub{
    width: 95% !important;
    margin-left: 10px !important;
  }
 }






/* Dropdown Menu Container */
.custom-dropdown-menu {
  display: flex;
  gap: 16px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 100%;
  left: 0;
  width: 600px; /* Adjust width based on content */
  z-index: 1000;
}

/* Left Section */
.left-section {
  flex: 1 1 35%; /* 3/10 of the menu width */
  border-right: 1px solid #ddd;
}

/* Center Section */
.center-section {
  flex: 1 1 65%; /* 4/10 of the menu width */
}



/* Section Titles */
.custom-dropdown-menu h5 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #303030;
}

/* Submenu Items */
.custom-dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-dropdown-menu ul li {
  margin-bottom: 3px;
}

.custom-dropdown-menu ul li a {
  text-decoration: none;
  color: #606060;
  font-size: 13px;
  transition: color 0.3s ease;
}

.custom-dropdown-menu ul li a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Hover Behavior */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: flex;
  visibility: visible;
  opacity: 1;
}

.navbar-nav .dropdown-menu {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nested-sections {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.nested-column {
  flex: 1;
}
.nested-column-left{
  border-right: 1px solid #ddd;
}

.separator {
  border: 1px solid #ddd;
  width: 80%;
  display: flex;
}
.separator1 {
  border: 1px solid #ddd;
  width: 100%;
  display: flex;
}


