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: 50vh !important; /* 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: 25px !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;
    }
    }
    
    /* About Section */

    /* .custom-container{
      margin-top: 50px;
      margin-bottom: 50px;
    } */

    .block {
      width: 746px;
      height: 710px;

      position: absolute;
      left: -310px;
      top: 50px;
      /* Adjusts vertical position */
      z-index: 1;
      /* Ensures it's above other elements */
      display: flex;
      flex-direction: column;
      /* Stack containers vertically */
      align-items: center;
      justify-content: center;
  }

  .block .container-box {
      width: 100%;
      /* Full width of the block */
      height: 200px;
      /* Adjust as needed */
      margin: 10px 0;
      /* Spacing between boxes */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      /* Text color for contrast */
  }

  .container-box1 {
      width: 90%;
      margin-left: -70px;
      padding: 0px;
      margin-top: -60px;
  }

  .container-box2 {
      width: 90%;
      margin-left: -220px;
      padding: 0px;
      text-align: justify !important;
  }

  .container-box3 {
      width: 100%;
      margin-left: 0px;
      padding: 0px;
      text-align: justify !important;
      background-color: #2B3949;
      border-radius: 10px !important;
      margin-top: 20px;
  }

  .box1 {
      display: flex;
      justify-content: flex-start;
      /* Align items to the start (left) */
      padding: 20px;
      /* Add padding for spacing */
      position: relative;
      /* Position relative to use Bootstrap utilities */
  }

  .box1 h1 {
      width: 80%;
      /* Set width of h1 */
      text-align: left;
      /* Align text to the left */
      margin: 0;
      /* Remove default margin */
      position: absolute;
      /* Position absolutely within the relative container */
      font-size: 40px;
      font-family: "Outfit", sans-serif;
      /* Font family */
  }

  .box2 {
      text-align: left !important;
      /* left text */
      width: 70%;
  }



  .block h1 {
      text-align: left;
      /* Align text to the left */
      color: #000;
      /* Text color */
      margin: 0;
      /* Remove default margin */
  }

  .block p {
      text-align: left;
      /* left text */
      color: #000;
      /* Text color */
      margin-left: 20px;
      /* Remove default margin */
      font-family: "Inter", sans-serif;

  }

  .image-container {
      display: flex;
      justify-content: flex-end;
      position: relative;
      z-index: 0;
      padding: 0;
      /* Reset padding */
      position: relative;
      left: 300px;
      
  }

  .image-container img {
      width: 700px;;
      height: 600px;
      object-fit: cover;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      margin-top: 50px;
      margin-bottom: 50px;
  }


  /* Container with 746px width */
  .container {
      width: 746px;
      margin: 0 auto;
      /* Centering the container */
      border-radius: 10px;
  }

  /* Row 1 with background color and flexbox layout */
  .row-1 {
      background-color: #2B3949;
      /* Light gray background */
      color: white;
      display: flex;
      justify-content: space-between;
      /* Space between columns */
      align-items: center;
      /* Centering content vertically */
      padding: 20px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
  }

  /* Column styling for left and right */
  .col-left,
  .col-right {
      display: flex;
      align-items: center;
      /* Center items vertically */
      gap: 10px;
      /* Space between image and heading */
      flex: 1;
      /* Allow column to grow */
      padding: 20px;
  }

  /* Image styling */
  .logo {
      width: 50px;
      /* Adjust logo width as needed */
      height: auto;
  }

  /* Heading styling */
  .heading {
      margin: 0;
      color: white;
      /* Dark text color */
      font-size: 24px;
      /* Adjust font size as needed */
      text-align: left;
      font-family: "Outfit", sans-serif;
      font-weight: bold;
  }

  /* Divider line between rows */
  .divider-1 {
      width: 100%;
      height: 0.8px;
      background-color: #c5c4c4;
      /* Darker color for divider */
      margin: 0;
      /* Spacing around the divider */
  }

  /* Row 2 with different background color */
  .row-2 {
      background-color: #2B3949;
      /* Slightly darker gray */
      padding: 20px;
      text-align: center;
      /* Centering the content */
      border-bottom-left-radius: 10px;
      border-bottom-right-radius: 10px;
  }

  /* Checkmark styling */
  .checkmark {
      font-size: 24px;
      /* Adjust size as needed */
      color: #fff;
      /* White color */
      margin-right: 10px;
      /* Space between checkmark and text */
      display: inline-block;
      /* Ensure proper spacing and alignment */
  }

  .paragraph-container p {
      color: white !important;
  }


  /* Mobile view adjustments */
  @media (max-width: 768px) {
      .custom-container{
          width: 100%;
      }
      .block {
          display: block;
          /* Show the block in mobile view */
          position: relative;
          /* Position relative to its normal flow */
          width: 100%;
          /* Full width */
          height: auto;
          /* Adjust height automatically */
          top: 20px;
          /* Reset top positioning */
          z-index: 1;
          /* Ensure it's above other elements */
          padding: 0px;
          /* Add padding for spacing */
          margin-left: 304px !important;
      }

      .container-box1 {
          width: 100%;
          margin-left: 0px;
          padding: 0px;
          margin-top: 0px;
      }

      .box1 h1 {
          width: 100%;
          /* Set width of h1 */
          text-align: left;
          /* Align text to the left */
          margin-bottom: 15px;
          /* Remove default margin */
          position: absolute;
          /* Position absolutely within the relative container */
          font-size: 40px;
          font-family: "Outfit", sans-serif;
          /* Font family */
      }

      .container-box2 {
          width: 100%;
          margin-left: 0px;
          padding: 0px;
          text-align: justify !important;
      }

      .block p {
          text-align: justify;
          /* left text */
          color: #000;
          /* Text color */
          margin-bottom: 25px;
          /* Remove default margin */
          margin-left: 0px;
      }

      .block .container-box {
          height: auto;
          /* Adjust height automatically */
          text-align: center;
          /* Center text in mobile view */
          width: 100%;
      }

      .image-container {
          display: block;
          /* Show image container */
          width: 100%;
          /* Full width */
          position: relative;
          /* Position relative to its normal flow */
          padding: 20px 0;
          /* Add padding above and below */
          position: relative;
          left: 0px !important;
      }

      .image-container img {
          width: 100%;
          /* Full width */
          height: auto;
          /* Maintain aspect ratio */
          margin-top: 30px;
          border-top-right-radius: 20px;
          border-bottom-right-radius: 20px;
      }

      /* Heading styling */
      .heading {
          margin: 0;
          color: white;
          /* Dark text color */
          font-size: 24px;
          /* Adjust font size as needed */
          text-align: left;
      }
  
/* Set width for container-box3 */
.container-box3 {
width: auto; /* Fixed width for the container */
margin: 0 auto; /* Center the container */
margin-left: 8px !important; /* Add padding inside the container */
}

/* Adjust row-1 layout for mobile */
.row-1 {
display: block; /* Stack columns vertically */
text-align: center; /* Center-align content */
padding: 0px;
}

.col-left, .col-right {
display: flex;
align-items: center; /* Align items vertically */
justify-content: center; /* Center items horizontally */
margin-bottom: 20px; /* Space between the columns */
width: 100%; /* Full width for each column */
text-align: center; /* Center-align content in columns */
}

.col-left img, .col-right img {
width: 50px; /* Adjust image size */
height: auto; /* Maintain aspect ratio */
}

/* Adjust divider */
.divider {
width: 95%;
height: 1px;
background-color: #d1cccc; /* Dark color for the divider */
margin: 10px 0; /* Margin around the divider */
position: relative;
left: 8.50px;
}

/* Adjust paragraph container */
.paragraph-container {
max-width: 100%; /* Ensure full width for paragraphs */
padding: 10px; /* Adjust padding */
text-align: left; /* Align text to left if needed */
font-family: "Inter", sans-serif;
}

.checkmark {
font-size: 20px; /* Adjust checkmark size for mobile */
}
}
  
  
.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) {
    .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;
    }
  
  /* 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 */
    }
  }