body{
    overflow-x: hidden;
    /* background-color: #f6e5e5; */
    background-color: #EEF5FF;
  }
  .full-width-div {
    width: 100vw; /* Ensures the div takes full viewport width */
    height: 64px;
    background-color: #2b3949; /* Optional: background color for visibility */
    margin: 0; /* Removes any default margin */
    padding: 0; /* Removes any default padding */
  }
  .left-section{
    width: 40vw;
    position: relative;
    line-height: 64px;
    float: left;
    left: 130px;
  }
  svg{
    position: relative;
    top: -1px;
    font-weight: bolder;
    right: 4px;
    
  }
  .working-hours{
    color: #f5f5f5;
    font-size: 16px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
  }
  .timing{
    margin-left: 20px;
    font-size: 16px;
    font-weight: 400;
    font-family: "Inter", sans-serif;
  }
  .right-section{
  width: 700px !important;
  position: relative;
  float: right;
  right: 40px;
  line-height: 64px;
  color: white;
  }
  .divider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  }
  .divider-container .divider {
  margin: 0 10px;
  color: #fff; /* White color for text */
  font-weight: bold;
  }
  .email{
  color: #f5f5f5;
  font-size: 16px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  
  }
  .number{
  height: auto;
  color: #f5f5f5;
  font-size: 16px;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  }
  .num{
  margin-left: 8px;
  }
  .header-icon{
    margin-left: 10px;
    color: white;
  }
  .header-icon:hover{
    color: rgba(255, 255, 255, 0.838);
  }
  
  @media (max-width: 769px){
    .full-width-div{
        display: none;
    }
  
  }
  
  /* Navbar styling for desktop view */
  .navbar {
    height: 99px;
    padding: 0;
    background-color: #D9EAFD;  /* Adjust based on your design */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: for a shadow effect */
  }
  
  .navbar-brand img {
    height: 120px;
    object-fit: contain;
    margin-top: 6px;
    margin-left: 3px;
  }
  
  .navbar-nav {
    margin: 0 auto; /* Centering the nav items */
    margin-left: 140px;
  }
  
  .btn-custom {
    margin-left: auto; /* Pushes the button to the right */
  }
  
  /* Hide the toggler for desktop */
  .navbar-toggler {
    display: none;
  }
  .nav-link{
    color: black !important;
    font-size: 18px;
    font-family: "Inter", sans-serif;
    font-weight: bold;
    margin-right: 15px;
  }
  .nav-item:hover .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu {
    color: black !important;          /* Ensure text color is black */
    font-size: 16px;                  /* Set font size */
    font-family: "Inter", sans-serif; /* Use "Inter" font */
    
    width: auto;            /* Adjust width automatically based on content */
    min-width: 100%;        /* Ensure it covers the full width of the dropdown trigger */
    white-space: nowrap;    /* Prevent text from wrapping into multiple lines */
  }
  /* Hide the dropdown by default */
#servicesDropdown {
  display: none;
}

/* Show the dropdown when the 'show' class is added */
#servicesDropdown.show {
  display: block;
  font-weight: bold;
  
}
  
  /* Get Started Now Button Styling */
  #getStartedButton {
    width: 320px !important; /* Width of the button */
    height: 44px; /* Height of the button */
    background-color: #2B3949; /* Background color */
    color: #FFFFFF; /* Text color */
    font-family: "Inter", sans-serif;
    font-size: 15px; /* Font size */
    border: none; /* Remove default border */
    border-radius: 5px; /* Optional: rounded corners */
    display: flex; /* Aligns the content properly */
    align-items: center; /* Centers text vertically */
    justify-content: center; /* Centers text horizontally */
    padding: 10px 20px; /* Optional: padding inside the button */
    text-transform: uppercase; /* Optional: uppercase text */
    cursor: pointer; /* Change cursor to pointer on hover */
    margin-right: 35px;
  }
  
  #getStartedButton svg {
    margin-left: 8px; /* Spacing between text and icon */
    position: relative;
    top: -4px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 991.98px) {
    .navbar {
      height: auto; /* Allow height to adjust for mobile */
      position: absolute ;
      top: 0px !important;
    }
  
    .navbar-brand img {
      height: auto; /* Adjust logo height for mobile */
    }
  
    .navbar-nav {
      margin: 0; /* Centering for mobile view */
    }
  
    .btn-custom {
      margin: 20px 0; /* Adjust spacing for mobile */
      display: block;
    }
  
    .navbar-toggler {
      display: block; /* Show the toggler for mobile */
      margin-right: 10px !important;
    }
    #getStartedButton{
      display: none;
    }
  }
  
      /* Mobile view adjustments */
      @media (max-width: 991.98px) {
        .social-icons {
          margin-top: 20px; /* Space between contact info and icons */
          display: flex;
          justify-content: flex-start; /* Align icons to the left */
          width: 100%;
        }
    
        .social-icons a {
          color: #000; /* Icon color */
          text-decoration: none; /* Remove underline */
          font-size: 24px; /* Adjust icon size */
          margin-right: 10px; /* Space between icons */
        }
    
        .social-icons a:last-child {
          margin-right: 0; /* Remove right margin from the last icon */
        }
    
        .navbar-brand img {
          height: 60px; /* Adjust this value as needed */
        }
    
        .navbar-collapse {
          position: fixed;
          top: 70px; /* Adjust this value based on the height of your logo and any potential padding/margin */
          left: 0;
          width: 100%;
          height: calc(100% - 70px); /* Adjust this value based on the height of your logo */
          background-color: white; /* Optional: set a background color */
          z-index: 1000; /* Ensure it’s on top */
          overflow-y: auto; /* Enable scrolling if content overflows */
          padding: 20px; /* Optional: add padding inside the collapse */
        }
    
        .navbar-nav {
          display: block; /* Make the navbar items stack vertically */
          margin: 0; /* Remove default margins */
        }
    
        .nav-item {
          margin-bottom: 15px; /* Add space between items */
        }
    
        .contact-info {
          margin-top: 20px; /* Space between menu items and contact info */
        }
    
        .contact-info p {
          margin: 0;
          padding: 0;
        }
    
        .contact-info a {
          display: block;
          margin-bottom: 10px; /* Space between contact items */
          color: #000; /* Adjust color as needed */
          text-decoration: none; /* Remove underline */
        }
    
        .contact-info a:hover {
          text-decoration: underline; /* Underline on hover */
        }
      }
    
      /* Hide contact info and social icons on desktop view */
      @media (min-width: 992px) {
        .contact-info,
        .social-icons {
          display: none;
        }
      }

.hero-section {
    height: 54vh; /* Set height to 100% of viewport height */
    margin-top: 50px; /* Add top margin of 50px */
    background-image: url(../images/breadcrumb_desktop.jpg);
}
.span-nav{
    font-size: 24px;
    margin-right: 10px;
    color: #f6c344;
    cursor: pointer;
  
}
.span-nav-divider{
    font-size: 24px;
    margin-right: 10px;
    color: #f6c344;

}

h1 {
    color: white; /* Color for the heading */
    font-family: "Outfit", sans-serif;
    font-weight: bold;
}
@media (max-width: 768px) {
  .hero-section {
    height: 25vh !important; /* Set height to 100% of viewport height */
    background-image: url(../images/breadcrumb_mobile.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 50px !important;
  }
  
.span-nav{
    font-size: 16px !important;
    margin-right: 10px;
    color: #f6c344;
    cursor: pointer;
  
}
.span-nav-divider{
    font-size: 16px !important;
    margin-right: 10px;
    color: #f6c344;

}

h1 {
    color: white; /* Color for the heading */
    font-family: "Outfit", sans-serif;
    font-weight: bold;
    font-size: 40px !important;
}
}


.footer-container {
    background-color: #2B3949; /* Background color of the footer */
    color: #fff; /* Text color */
    padding: 20px 0; /* Padding for top and bottom */
    
    }
    
    .footer-container .container-fluid {
    padding: 0 -10px; /* Adjust padding */
    }
    
    .footer-logo {
    display: flex;
    /* align-items: center; Center the logo vertically */
    /* margin-left: 50px !important; Move the logo 10px to the left */
    width: 50% !important;
    }
    
    .footer-logo img {
    max-width: 100% !important; /* Ensure responsiveness */
    width: 40%;
    height: auto;
    position: relative;
    left: 30px !important;
    }
    
    .footer-divider-vertical {
    width: 2px; /* Width of the vertical divider */
    background-color: #ccc; /* Light gray color */
    height: 40px; /* Initial height, adjust as needed */
    margin: 0 15px; /* Space between the logo and the icons */
    position: relative;
    left: -460px; /* Adjust the position to align properly */
    }
    
    .footer-social {
    display: flex; /* Use flexbox to align items in a row */
    justify-content: center; /* Center the icons horizontally within the row */
    align-items: center; /* Center the icons vertically within their container */
    /* margin-left: -460px ; */
    }
    
    .footer-icon {
    color: #ffffff; /* Icon color */
    font-size: 20px !important; /* Icon size */
    margin: 0 10px; /* Horizontal spacing between icons */
    text-decoration: none; /* Remove underline */
    border: 1px solid #ffffff81; /* Circle border color */
    border-radius: 50%; /* Makes the border circular */
    padding: 15px; /* Space inside the border */
    display: flex; /* Center the icon vertically and horizontally */
    align-items: center; /* Center the icon vertically */
    justify-content: center; /* Center the icon horizontally */
    width: 50px; /* Set a fixed width */
    height: 50px; /* Set a fixed height to ensure the circle */
    box-sizing: border-box; /* Include border and padding in width/height calculation */
    transition: background-color 0.4s ease, color 0.4s ease;
    }
    
    .footer-icon:hover {
    color: #ffffff; /* Change icon color on hover */
    background-color: #2d4e6c; /* Smooth background color change on hover */
    text-decoration: none; /* Ensure no underline on hover */
    }
    
    
    /* Desktop View */
    .footer-divider {
    height: 1px; /* Height of the divider */
    background-color: lightgray !important; /* Divider color */
    width: 100% !important; /* Width of the divider */
    margin: 0 auto; /* Center the divider with margin */
    /* margin-top: -17px !important; */
    }
    
    
    
    
    .footer-boxes {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    max-width: 1440px; /* Adjust as needed for container width */
    margin-left: auto;
    margin-right: auto;
    }
    
    .footer-box {
    /* background-color: #3C4D63; Background color for boxes */
    padding: 20px;
    box-sizing: border-box;
    height: 295px; /* Set height */
    width: 300px !important; /* Set width */
    }
    
    .footer-box:first-child {
    margin-left: 80px; /* Left margin for the first box */
    }
    
    .footer-box:last-child {
    margin-right: 80px; /* Right margin for the last box */
    }
    
    .footer-box h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-family: "outfit", sans-serif;
    }
    
    .footer-box p, .footer-box ul, .footer-box li {
    color: #cccccc;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    }
    
    .footer-box ul {
    list-style: none;
    padding-left: 0;
    }
    
    .footer-box li a {
    color: #cccccc;
    text-decoration: none ;
    line-height: 35px !important;
    }
    
    .footer-box li a:hover {
    color: #ffffff;
    text-decoration: none;
    }
    
    
    
    
    .mobile-footer-divider {
    width: 100%; /* Adjust width as needed */
    height: 1px; /* Set a more prominent height for desktop view */
    background-color: #ffffff; /* Color to match your design */
    margin: 30px auto; /* Center the divider with margin */
    position: relative;
    /* Add any additional styling needed for the desktop view */
    color: white;
    }
    
    
    /* Divider Line */
    .footer-divider {
    height: 1.50px;
    background-color: lightgray !important; /* Divider color */
    width: 80%; /* Width of the divider */
    margin: 20px auto 0; /* Center the divider */
    }
    
    .text-centar {
    text-align: center;
    font-family: "Inter", sans-serif;
    }
    
    .text-centar p {
    margin: 0; /* Remove default margin from the paragraph */
    font-size: 14px; /* Adjust font size as needed */
    color: #ffffff; /* Text color */
    font-family: "Inter", sans-serif;
    }
    
    /* Media Query for Mobile View */
    @media (max-width: 768px) {
      .footer-container {
        background-color: #2B3949; /* Background color of the footer */
       
        height: auto;
        }
    
      .row.justify-content-center {
          display: flex; /* Ensure the row uses flexbox */
          flex-direction: column; /* Stack children vertically */
          align-items: center; /* Center align all items horizontally */
          width: 100%; /* Ensure the row takes full width */
          margin: 0; /* Remove margin */
          padding: 0; /* Remove padding */
          position: relative; /* Ensure relative positioning for context */
          top: -20px;
          bottom: 20px;
          margin-left: 0px;
      }
    
    /* Container for the logo image */
    .footer-logo {
      width: auto; /* Container adjusts automatically based on content */
      height: auto; /* Container adjusts automatically based on content */
      overflow: visible; /* Allow the image to overflow the container */
      display: flex; /* Flexbox for alignment */
      justify-content: flex-start; /* Align items to the left */
      align-items: center; /* Center items vertically */
    }
    
    /* Style for the logo image */
    .footer-logo img {
      width: auto; /* Set desired width for the image */
      height: 100px; /* Set desired height for the image */
      object-fit: scale-down;
      transform: scale(1.8);
      position: relative; /* Allow the image to be positioned */
      left: -20px !important; /* Move the image to the left (adjust this value as needed) */
    }
    
    
    
      .footer-divider-vertical {
          display: none; /* Hide the vertical divider */
      }
    
      .footer-social {
          display: flex; /* Use flexbox */
          justify-content: center; /* Center the social icons horizontally */
          align-items: center; /* Center align icons vertically if needed */
          width: 100%; /* Full width to ensure centering */
          padding: 0; /* Remove padding if any */
          margin: 0; /* Remove margin if any */
          
      }
    
      .footer-social a {
          margin: 0 10px; /* Space out icons */
      }
    
      .footer-boxes {
          display: flex; /* Use flexbox for layout */
          flex-direction: column; /* Stack boxes vertically */
          align-items: flex-start; /* Align items to the left */
          width: 100%; /* Full width of the viewport */
          margin: 0; /* Remove margin */
          padding: 0; /* Remove padding */
          box-sizing: border-box; /* Ensure padding and border are included in the width */
      }
    
      .footer-boxes .col-md-auto {
          flex: 1 0 100%; /* Ensure columns take full width */
          padding-left: 0; /* Remove left padding */
          padding-right: 0; /* Remove right padding */
          box-sizing: border-box; /* Ensure padding and border are included in the width */
      }
    
     
      .footer-divider {
      margin-top: 10px !important; /* Adjust this value as needed */
    }
      
    
      /* Remove inline styles from HTML */
      .footer-box:nth-of-type(1) {
          position: static; /* Remove any relative positioning */
          margin-left: 0px;
          margin-right: 80px;
          margin-top: 30px;
         
      }
      .footer-box:nth-of-type(2) {
          position: static; /* Remove any relative positioning */
          margin-right: 80px;
      }
      .footer-box:nth-of-type(3) {
          position: static; /* Remove any relative positioning */
          margin-right: 80px;
      }
    
      .footer-box:nth-of-type(4) {
          position: static; /* Remove any relative positioning */
      }
    }