      :root {
        --primary-color: #0056b3;
        --secondary-color: #f8f9fa;
        --accent-color: #f6a20e;
      }
      
      
      html {
        overflow-y: scroll; /* Always show vertical scrollbar */
        scrollbar-width: thin;
      }

      body {
        font-family: "Roboto", sans-serif;
        line-height: 1.6;
        color: #333;
      }

      h1,
      h3,
      h4 {
        color: #f6a20e;
      }

      h1 {
        padding-top: 30px;
        font-weight: 700;
        color: #db8e09;
      }


      /* Footer Styling */
      footer {
        background-color: #0d3c47;
        color: white;
        padding: 40px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .footer-container {
        display: flex;
        justify-content: space-around;
        /*width: 100%;*/
        max-width: 1200px;
        flex-wrap: wrap;
        gap: 60px;
      }

      .footer-column {
        flex: 1;
        min-width: 250px;
        margin: 0 10px;
        text-align: left;
      }

      .footer-logo {
        width: 80px;
        margin-bottom: 10px;
      }

      /*.quick-links {
        margin-left: 20px;
      }*/

      .quick-links a {
        color: white;
        font-size: 1.2rem;
        text-decoration: none;
        transition: color 0.3s ease;
      }

      .quick-links a:hover {
        color: #ff7f50;
      }

      .footer-column h4 {
        font-size: 1.2rem;
      }

      .footer-column form {
        display: flex;
        flex-direction: column;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
      }

      .footer-column input,
      .footer-column textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
      }

      .footer-column input::placeholder,
      .footer-column textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
      }

      .footer-column button {
        width: 100%;
        padding: 12px;
        background-color: #0056b3;
        border: none;
        border-radius: 4px;
        color: white;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }

      .footer-column button:hover {
        background-color: #003e80;
      }

      .copyright {
        margin-top: 40px;
        text-align: center;
        width: 100%;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      /* Contact Button Styles */
      .sticky-contact {
        position: fixed;
        bottom: 20px;
        right: 20px;
        transition: all 0.3s ease;
        z-index: 1000;
      }

      .contact-main-btn {
        background-color: #0056b3;
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
      }

      .contact-main-btn:hover {
        transform: scale(1.1);
      }

      .contact-options {
        position: absolute;
        bottom: 70px;
        right: 0;
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
      }

      .contact-options.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .contact-option-btn {
        background-color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        text-decoration: none;
        color: #333;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      }

      .whatsapp-btn {
        background-color: #25D366;
        color: white;
      }

      .email-btn {
        background-color: #0056b3;
        color: white;
      }

      .email-form-container {
        position: absolute;
        bottom: 190px;
        right: 0;
        background-color: #0056b3;
        padding: 20px;
        border-radius: 10px;
        width: 300px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        visibility: hidden;   /* Use visibility instead of display */
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.3s ease; /* Apply smooth transition */
      }
      
      .email-form-container.show {
        visibility: visible;  /* Make it visible */
        opacity: 1;
        transform: translateY(0);
      }
      

      .form-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
      }

      .close-btn {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 1.2rem;
      }

      .alert {
        position: fixed;
        top: 20px;
        right: 20px;
        padding: 15px;
        border-radius: 4px;
        display: none;
        z-index: 1001;
      }

      .alert.show {
        display: block;
      }

      .alert-success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
      }

      .alert-danger {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
      }

      /* Responsive Adjustments */
      @media (max-width: 768px) {
        .footer-container {
          flex-direction: column;
          align-items: center;
          gap: 0px;
        }

        .footer-column {
          width: 100%;
          margin: 20px 0;
          padding: 0 20px;
        }

        .sticky-contact.center {
          bottom: 20px;
          right: 20px;
          transform: none;
        }

        .email-form-container {
          width: 90vw;
          max-width: 300px;
          right: 50%;
          transform: translateX(50%);
        }
      }

      @media (max-width: 480px) {
        .footer-logo {
          width: 60px;
        }

        .quick-links a {
          font-size: 1.2rem;
        }

        .contact-main-btn {
          width: 40px;
          height: 40px;
          font-size: 1rem;
        }
      }

/*////////////////////////////////////////////////////////////////////////////////*/


      
      .slider img {
        width: 100%;
        height: 500px;
        object-fit: cover;
      }
      /* For Webkit browsers like Chrome, Safari */
      ::-webkit-scrollbar {
        width: 12px;
      }

      ::-webkit-scrollbar-track {
        background: #f1f1f1;
      }

      ::-webkit-scrollbar-thumb {
        background: #888;
      }

      ::-webkit-scrollbar-thumb:hover {
        background: #555;
      }
      /* Hide scrollbars on mobile view */
      @media (max-width: 768px) {
        /* You can adjust the max-width as needed */
        body {
          overflow: hidden; /* Hides scrollbars on mobile view */
        }
      }


      .accordion-body img {
        width: 500px; /* Ensure images don't exceed the container width */
        height: auto; /* Maintain aspect ratio */
        border-radius: 5px; /* Optional: Round the corners of the image */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Optional: Add a shadow to the image */
      }
      .accordion-button {
        flex-wrap: wrap;
      }

      
    

      .navbar {
        background-color: var(--primary-color) !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
      }
      .navbar-brand img {
        width: 55px;
        height: auto;
        margin-right: 10px;
      }

      .navbar-brand,
      .nav-link {
        color: white !important;
        font-weight: 500;
        font-size: 18px;
        padding: 0.5rem 1rem !important;
      }

      .nav-link-active{
        color: #f6a20e !important;
      }

      .nav-item {
        margin: 0 0.5rem;
      }

      .nav-link:hover {
        color: var(--accent-color) !important;
      }

      .dropdown-menu {
        background-color: var(--primary-color);
      }
      .dropdown-item {
        color: white;
      }
      .dropdown-item:hover {
        background-color: var(--accent-color);
      }

      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
      }

      @media (min-width: 992px) {
        /* 992px is Bootstrap's breakpoint for large devices */
        .nav-item.dropdown:hover .dropdown-menu {
          display: block;
        }
      }

      @media (max-width: 991px) {
        .navbar-nav .nav-item {
          margin: 0.5rem 0; /* Space between menu items */
        }
        
        .navbar-nav .nav-link {
          background-color: #1c5d99; /* Nice blue background */
          border: 2px solid #f6a20e; /* Accent border color */
          border-radius: 8px; /* Rounded corners for smooth design */
          padding: 0.75rem 1.5rem; /* Add padding for better spacing */
          color: white !important;
          text-align: center;
          transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
          background-color: #f6a20e; /* Change to accent color on hover */
          color: #1c5d99 !important; /* Invert text color for contrast */
        }
      }

      .navbar-brand img[src="images/Logo_text.webp"] {
        width: 170px; 
      }

      @media (max-width: 991px) {
        .navbar-brand img {
          width: 35px;
          height: auto;
        }
        .navbar-brand img[src="images/Logo_text.webp"] {
          width: 120px; /* Reduce width for mobile */
        }
      }
      

      .highlighted-text {
        color: #d66d11; /* Replace with your desired color */  /* Space before the strong text */
        padding-right: 5px; /* Space after the strong text */
        text-decoration: underline;
      }

      img {
        -webkit-user-drag: none;
        -moz-user-select: none;
        -webkit-user-select: none;
        user-select: none;
        pointer-events: none;
      }



/*-------------------------------------------------------------PreLoader------------------------------------------------------------*/

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0d3c47; /* Change this to match your site’s background */
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: relative; /* Position relative for absolute child */
  width: 100px; /* Adjust as needed */
  height: 100px; /* Adjust as needed */
}

.logo {
  position: absolute; /* Position the logo to overlap with the loader */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -50%); /* Adjust for the size of the logo */
  width: 80px; /* Adjust logo size */
  height: auto;
  z-index: 10; /* Ensure the logo appears above the loader */
}

.circle-loader {
  border: 8px solid #f3f3f3; /* Light gray */
  border-top: 8px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 100px; /* Match this to the loader size */
  height: 100px; /* Match this to the loader size */
  animation: spin 1s linear infinite;
  position: absolute; /* Position absolute to center it */
  top: 0; /* Align with the parent container */
  left: 0; /* Align with the parent container */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

    
