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; /* 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: 20px !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;
}
}


  
  .infobox-container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-evenly;
    margin-top: 50px;
  
}
.infobox {
    position: relative; /* Ensure the title and content are positioned relative to this container */
    background: linear-gradient(135deg, #e3f2fd, #bbdefb); /* Light background gradient */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #333333; /* Dark text for better contrast */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 360px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content to the bottom */
    padding: 20px;
    font-family: 'Arial', sans-serif;
    
}

.infobox-title {
font-size: 1.4rem;
font-weight: 700;
color: #ffffff; /* Title color for contrast */
margin: 0; /* Remove default margins */
text-align: center; /* Center the text */
background: rgba(0, 0, 0, 0.444); /* Semi-transparent white background */
padding: 10px; /* Add padding if needed */

border-radius: 10px; /* Rounded corners for the background */
}



.infobox:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.infobox-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 20px;
    opacity: 0; /* Hidden by default */
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Align content to the top */
    text-align: left;
}

.infobox:hover .infobox-content {
    opacity: 1; /* Visible on hover */
    text-decoration: none;
}

.first-infobox a {
  color: white;
  text-decoration: none !important;
  background-color: transparent;
  
}
.infobox-content h3.infobox-title {
    margin: 0; /* Remove margins for the title in content */
    margin-bottom: 10px; /* Space below the title */
    font-size: 1.2rem; /* Smaller font size for the title in content */
}

.infobox-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    
}

.infobox-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2b3949;
    background: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.infobox-button:hover {
    color: white !important;
    background: #2b3949 !important;
}

.infobox-item {
    position: relative;
    z-index: 1;
    flex: 1 1 calc(33.333% - 20px);
    margin-bottom: 30px;
}
.infobox-item:nth-child(1) .infobox { background-image: url(../images/services_1.jpg); }
.infobox-item:nth-child(2) .infobox { background-image: url(../images/services_2.jpg); }
.infobox-item:nth-child(3) .infobox { background-image: url(../images/services_3.jpg); }
.infobox-item:nth-child(4) .infobox { background-image: url(../images/services_4.jpg); }
.infobox-item:nth-child(5) .infobox { background-image: url(../images/services_5.jpg); }
.infobox-item:nth-child(6) .infobox { background-image: url(../images/services_6.jpg); }
@media (max-width: 768px) {
    .infobox-item {
        flex: 1 1 100%;
    }
    .infobox-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
      margin-top: 50px;
      padding-left: 18.50px;
  }
   
}

/* Overall Section Styling */
.contact-section {
 
  padding: 50px 20px; /* Space around the entire section */
}

/* Container to align content */
.container {
  display: flex;
  justify-content: space-between; /* Evenly space between left and right containers */
  align-items: flex-start;
  flex-wrap: wrap; /* Wrap content for responsiveness */
  max-width: 1200px; /* Maximum width for content */
  margin: 0 auto; /* Center the container */
}

/* Left Container: Contact Information */
.left-container {
  flex: 1; /* Takes up equal space */
  background-color: white; /* White background for contrast */
  padding: 20px; /* Inner padding */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  margin-right: 20px; /* Space between left and right container */
}

.left-container h2 {
  font-size: 28px; /* Slightly larger heading */
  color: #2B3949; /* Dark text color */
  margin-bottom: 15px; /* Space below heading */
}

.left-container p {
  font-size: 16px; /* Text size */
  color: #555; /* Softer text color */
  margin-bottom: 10px; /* Space between lines */
}

/* Right Container: Contact Form */
.right-container {
  flex: 1; /* Takes up equal space */
  background-color: white; /* White background for contrast */
  padding: 20px; /* Inner padding */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.right-container h2 {
  font-size: 28px; /* Slightly larger heading */
  color: #2B3949; /* Dark text color */
  margin-bottom: 15px; /* Space below heading */
}

.contact-form .form-group {
  margin-bottom: 20px; /* Space between form fields */
}

.contact-form label {
  display: block; /* Labels on their own line */
  margin-bottom: 5px; /* Space between label and input */
  font-weight: bold;
  color: #2B3949; /* Darker label color */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%; /* Full width of the container */
  padding: 12px; /* Padding inside the inputs */
  border: 1px solid #ddd; /* Light border for inputs */
  border-radius: 4px; /* Rounded corners */
  background-color: #f9f9f9; /* Light background for inputs */
  font-size: 16px; /* Font size for inputs */
  color: #333; /* Text color */
}

.contact-form button {
  padding: 12px 24px; /* Button padding */
  background-color: #2B3949; /* Dark background */
  color: white; /* White text */
  border: none; /* Remove default border */
  border-radius: 4px; /* Rounded corners */
  cursor: pointer; /* Pointer on hover */
  font-size: 16px; /* Font size */
  transition: background-color 0.3s ease; /* Smooth hover transition */
}

.contact-form button:hover {
  background-color: #f6c344; /* Hover color */
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
      flex-direction: column; /* Stack containers vertically */
      
  }

  .left-container,
  .right-container {
      margin-right: 0; /* Remove margin on smaller screens */
      margin-bottom: 20px; /* Space below each container */
  }
}



.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 */
    }
  }


