  /* General Styling */
body{
font-family: BRHKan05;
}
  .custom-header {
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .custom-navmenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .custom-logo img {
    width: 160px;
    height: auto;
    margin-top: 0;
    padding-bottom: 0;
  }

  .custom-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }

  .custom-menu > li {
    position: relative;
    margin-right: 20px;
  }

  .custom-menu > li > a {
    text-decoration: none;
    font-size: 16px;
    /* font-family: Arial, sans-serif; */
    color: black;
    padding: 10px 15px;
    display: inline-block;
  }

  .custom-menu > li > a:hover {
    color: green;
    border-bottom: 3px solid rgb(0, 128, 0);
    border-radius: 20px;
  }
  .custom-menu li a.active {
    color: green;
    border-bottom: 3px solid rgb(0, 128, 0);
    border-radius: 20px;
}
  /* Mega Menu Styling */
  .custom-mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    padding: 20px;
    width: 500px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  /* Show Mega Menu on hover for large screens */
  .custom-menu > li:hover .custom-mega-menu {
    display: block;
  }

  .custom-menu > li.open > .custom-mega-menu {
    display: block;
  }

  .custom-mega-menu .row {
    display: flex;
    gap: 10px;
  }

  .custom-mega-menu .col {
    flex: 1;
  }

  .custom-mega-menu h4 {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
    font-family:'Arial', sans-serif;;
  }

  .custom-mega-menu li {
    margin-bottom: 5px;
  }

  /* Mega Menu link styling */
  .custom-mega-menu li a {
    font-size: 14px;
    color: black;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px; /* Rounded corners */
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition for hover */
  }

  /* Hover effect on Mega Menu links */
  .custom-mega-menu li a:hover {
    background-color:rgb(0, 128, 0); /* Green background on hover */
    color: white; /* White text on hover */
    transform: scale(1.05); /* Slight scale effect */
  }

  .custom-mega-menu li a:active {
    background-color:rgb(0, 128, 0); /* Darker green when clicked */
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .custom-navmenu {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }

    /* Initially hide the menu */
    .custom-menu {
      flex-direction: column;
      background: white;
      position: fixed;
      top: 70px;
      left: 0;
      width: 100%;
      display: none;
      padding: 10px 20px;
      max-height: 100vh; /* Limit height of the menu to the screen height */
      overflow-y: auto; /* Allow vertical scrolling if needed */
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .custom-menu > li {
      margin: 0;
      text-align: left;
    }

    .custom-menu > li > a {
      padding: 15px;
      border-bottom: 1px solid #ddd;
    }

    .custom-menu.show {
      display: flex; /* Show the menu when the toggle is clicked */
    }

    .custom-mega-menu {
      position: static;
      display: block;
      width: 100%;
      display: none; /* Hide mega menu by default on small screens */
    }

    /* Mobile Toggle - Hamburger Icon */
    .custom-mobile-toggle {
      display: block;
      font-size: 24px;
      cursor: pointer;
      margin-left: auto;
    }

    .custom-mobile-toggle.open {
      display: block;
      font-size: 24px;
      cursor: pointer;
      margin-left: auto;
    }
    
    .custom-mobile-toggle span {
      font-size: 30px;
    }

    /* Change the hamburger icon to a close icon when menu is open */
    .custom-mobile-toggle.open span {
      content: '\00d7'; /* Cross icon (×) */
    }
  }

  .custom-mobile-toggle {
    display: none;
  }

  /* Ensure the mobile toggle is visible on smaller screens */
  @media (max-width: 768px) {
    .custom-mobile-toggle {
      display: block;
    }
  }


  body{
    font-family: 'Arial', sans-serif;
  }
  .icon-circle {
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    border: 2px solid #007bff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: rotate-circle 5s linear infinite;
    background-color: transparent; /* Ensure background transparency */
   
  }

  .icon-circle::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    border: 2px dashed #007bff;
    border-radius: 50%;
    animation: pulse 2s infinite;
    background-color: transparent; /* Transparent background for dashed animation */
  }

  /* @keyframes rotate-circle {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  } */

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 0.8;
    }
    100% {
      transform: scale(1.2);
      opacity: 0;
    }
  }

  .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Ensures proper image fit */
    position: absolute; /* Keep the image static */
    z-index: 1;
    background-color: transparent; /* Transparent background for the image */
    border-radius: 50%;
  }

  .service-item {
    /* text-align: center; */
    /* padding: 20px; */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .service-title {
    font-size: 10px;
    font-weight: bold;
    /* margin: 10px 0; */
  }

  .service-link {
    color: #007bff;
    font-size: 22px;
    text-decoration: none;
  }

  .service-list {
    list-style: none;
    padding: 0px 0px;
    margin-top: 15px;
    text-align: left;
  }
  .services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    border-bottom: 5px solid var(--surface-color);
    height: 100%;
  }

  .service-list li {
    font-size: 14px;
    margin-bottom: 0px;
    position: relative;
    padding-left: 15px;
  }

  .service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #007bff;
  }
  /* Default height for large screens */
  #carouselExampleCaptions {
      height: 500px;
  }

  #carouselExampleCaptions .carousel-item img {
      height: 500px;
  }

  /* Adjust height for smaller screens */
  @media (max-width: 768px) {
      #carouselExampleCaptions {
          height: 300px;
      }

      #carouselExampleCaptions .carousel-item img {
          height: 300px;
      }
  }

  @media (max-width: 576px) {
      #carouselExampleCaptions {
          height: 200px;
      }

      #carouselExampleCaptions .carousel-item img {
          height: 200px;
      }
  }

  .image-container {
    position: relative;
    display: block; 
  }

  .image-container:hover img {
    filter: blur(5px);
    transition: filter 0.3s ease;
    cursor: pointer;
  }

  .image-container:hover::after {
    content: "Click To View";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: green;
    font-size: 18px;
  
    text-align: center;
  }
