
/* ---

1 :: all button 
2 :: Header 
3 :: hero banner video 
4 :: Logo Slider
5 :: counter
6 :: testimonial csss 
7 :: footer
8 :: team member 
9 :: video section
10 :: contact us form

--- */
  :root {
    --theme-primary:#E2771C;
    --theme-section-backgrund-color:#f7f5f4;
    --theme-button-color:#f09c54;
    --black-color:#000000;
    --white-color:#ffffff;
    --theme-navbar-link:#333;
    --theme-gray-color:#999999;
    /* --p-text-color:#666666; */
    --p-text-color:#000000;
    --theme-local-background-color:#fdf5ed;
  }

  .white{
    color: var(--white-color) !important;
  }

  .custom-cursor {
    position: fixed;
    width: 14px; /* Outer circle size */
    height: 14px;
    background-color: transparent; /* Make the outer circle transparent */
    border-radius: 50%;
    pointer-events: none; /* Prevent interference */
    z-index: 1000;
    transform: translate(-50%, -50%); /* Center the cursor */
    transition: transform 0.1s ease-out; /* Smooth transition for following movement */
    border: 1px solid var(--theme-button-color); /* Border color */
    display: block;
  }
  
  /* Inner dot (the actual cursor) */
  .custom-cursor::before {
    content: '';
    position: absolute;
    width: 8px; /* Inner dot size */
    height: 8px;
    background-color: var(--theme-button-color); /* Dot color */
    border-radius: 50%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the dot inside the outer circle */
  }

  #main-header {
    transition: transform 0.3s ease-in-out;
  }
  
  .local-background{
    background-color: var(--theme-local-background-color);
  }
  
  #main-header.hide {
    transform: translateY(-100%);
  }
  

  body {
    font-family: "Noto Sans", sans-serif;
    
    margin-top: 5rem;
  }

  h1 , h2 , h3 , h4 , h5 , h6{
    font-weight: 400;
    color: var(--black-color);
    
  }
  a{
    text-decoration: none;
    color: var(--black-color);
  }
  
  .display-none{
      display:none !important;
  }
  
  .border-02-primary{
    border: 2px solid var(--theme-primary) !important;
    border-radius: 10px !important;
  }

  .top-p-100{
    padding-top: 50px;
  }
  .bottom-p-100{
    padding-bottom: 50px
  }
  .height-70vh{
    height: 70vh !important;
  }
    .border-none{
    border:none;
  }
  
  .ml-2{
    margin-left: 5px;
  }

  .cmb-1{
    margin-bottom: 1px;
  }
  .cp-05rem {
    padding: 0.5rem !important;
  }
  .max-height-100vh{
      max-height:100vh !important;
  }

  .mt-5rem{
    margin-top: 5rem !important;
  }

  .margin-right-left-10rem{
    margin-left: 10rem;
    margin-right: 10rem;
  }

  .bottom-border-gray{
    border-bottom: 1px solid #e6e6e6;
  }

  .text-underline{
    border-bottom: 2px solid var(--theme-primary);
    display: inline-block;
  }

  .backgorund-secondary{
    background-color: var(--theme-button-color);
  }

  .pl-pr-2 {
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .br-none {
    border-radius: 0px !important;
  }
  .display-inline-flex{
    display: inline-flex;
  }
  .size-4rem{
    font-size: 4rem !important ;
  }
  .size-2rem{
    font-size: 2rem !important;
  }
  .size-15rem{
    font-size: 1rem !important;
  }
  .size-14rem {
    font-size: 1.4rem !important;
}
  .size-13rem{
    font-size: 1.3rem !important;
  }

  .size-1rem{
    font-size: 1rem !important;
  }
  .size-08rem{
    font-size: 0.8rem;
  }

  .size-05rem{
    font-size: 0.5rem;
  }
  .width-70{
    max-width: 70%;
  }

  .img-size{
    height: 5rem;
  }
  .small-title{
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1rem;
    font-size: 13px;
    border-bottom: 2px solid var(--theme-primary);
    display: inline-block;
  }
  .black-title{
    font-weight: 700;
    color: var(--black-color);
  }
  .top-b-2px{
    border-top: 2px solid var(--theme-primary);
  }
  .border-2px{
    border: 2px solid var(--theme-primary);
  }

  .white-title{
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
  }
  .white-sub-title{
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .f-bold{
    font-weight: bold !important;
  }
  .f-700{
    font-weight: 700;
  }
  .f-600{
    font-weight: 600;
  }
  .f-400{
    font-weight: 400 !important;
  }

  .text-justify{
    text-align: justify;
  }
  .all-icon-color{
    color: var(--theme-primary);
  }

  .p-text-grey{
    color: var(--p-text-color);
  }
  .backgorund-primary{
    background-color: var(--theme-primary);
  }
  .o-color , .icon-color{
    color: var(--theme-primary) !important;
  }
  .text-theme-primary{
    color: var(--theme-primary);
  }

  .bg-theme-primary{
    background-color: var(--theme-primary);
  }
  .bg-white{
    background-color: var(--white-color);
  }
/* --------- 
   1 :: all button 
   --- */


  .ct-btn{
    background-color: var(--theme-button-color) !important;
    border: 1px solid var(--theme-button-color);
  }
  .ct-btn:hover{
    background-color: var(--theme-primary) !important;
    border: 1px solid var(--theme-primary);
  }

  .learn-more{
    background-color: var(--theme-button-color);
    color: var(--white-color);
    border-radius: 0px !important;
  }
  .learn-more:hover{
    background-color: var(--theme-primary);
    color: var(--white-color);
  }
  .border-radius-0{
    border-radius: 0px !important;
  }

  .arna-btn{
    background-color: var(--theme-button-color);
    color: var(--white-color);
    border-radius: 0px !important;
    border: 2px solid var(--theme-button-color);
    
    transition: 1s;
  }
  .arna-btn:hover{
    background-color: var(--theme-primary);
    color: var(--white-color);
    border: 2px solid var(--theme-primary);
  }
  .arna-know-mor a{
    color: var(--white-color);
  }
  .arna-know-more{
    background-color: var(--white-color);
    color: var(--theme-primary);
    border-radius: 0px !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    transition: 0.8s;
  }
  .arna-know-more:hover{
    background-color: var(--theme-primary) !important;
    color: var(--white-color);
  }

  /* --------- button end ------  */

/* ----- 
 2 :: Header 
 ------*/
  header {
    background-color: var(--white-color, #fff); /* Fixed background color */
    position: fixed; /* Fixed position */
    top: 0; /* Keep it at the top */
    left: 0; /* Align it to the left */
    right: 0; /* Align it to the right */
    z-index: 1020; /* Ensure it's on top of other elements */
    width: 100%; /* Make sure the header spans the full width */
    padding: 10px 0; /* Optional: Adjust padding as needed */
    transition: transform 0.3s ease-in-out;
  }
  /* Hide submenu initially */
  .mega-menu {
    display: none;
    background-color: var(--white-color);
    width: auto;
    margin-top: 1rem;
    transform: translateY(20px);  /* Slightly translate down for smooth animation */
    transition: opacity 0.3s ease, transform 0.3s ease;  /* Smooth fade-in and slide-up effect */
  }

  .dropdown-menu{
    border: none !important;
    background-color: var(--theme-primary) !important;
    padding: 5px 5px !important;
    border-radius: 0px !important;
    
  }
  .dropdown-item{
    background-color: var(--theme-primary) !important;
    color: var(--white-color) !important;
  }
    .dropdown-item-flag{
      background-color: var(--white-color) !important;
    color: var(--black-color) !important;
  }
  .dropdown-menu-flag{
    
    background-color: var(--white-color) !important;
   
    
  }

  /* Show submenu when hovering over the parent li */
  .nav-item:hover .mega-menu {
    display: block;
    transform: translateY(0);
    margin-top: 0.2rem; 
  }

  /* Style for dropdown items */
  .mega-menu .dropdown-item {
    /* padding: 10px; */
    color: var(--theme-navbar-link);
    text-decoration: none;
  
  }



  .nav-link {
    transition: 0.8s;
    color: var(--theme-navbar-link);
    text-decoration: none;
  }

  .nav-link:hover {
    color: #007bff;
    
  }
  .navbar-nav .dropdown-menu{
    position: fixed !important;
  }

  .nav-link {
    color: var(--theme-navbar-link);
    margin: 0 10px;
    text-decoration: none;
    font-weight: 500;
  }

  .nav-link:hover {
    color: var(--theme-primary);
  }

  /* Contact Form */
  .contact-form {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 300px;
    background-color: var(--white-color);
    padding: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px;
    background-color: var(--white-color);
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
  }

  .nav-link {
    text-decoration: none; /* Remove default underline */
    position: relative;
    display: inline-block;
  }

  .nav-link::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px; /* Line thickness */
    background-color: var(--theme-primary); /* Line color */
    bottom: 0;
    left: 0;
    transform: scaleX(0); /* Start with no visible line */
    transform-origin: bottom right; /* Start the line from the right side */
    transition: transform 0.8s ease; /* Smooth transition */
  }

  .nav-link:hover::before {
    transform: scaleX(1); /* On hover, expand the line */
    transform-origin: bottom left; /* Grow the line from the left side */
  }


/* ------
  3 :: hero banner video 
  -----  */

  /* Styling for the hero section */
  #hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

    color: var(--white-color); /* White text color */
  }
  
  #hero {
    height: 25vh; /* Default for mobile */
}

/* For screens that are 768px or wider (like tablets and PCs) */
@media (min-width: 768px) {
    #hero {
        height: 100vh;
    }
}

/* For small screens, specifically targeting iPhone (portrait/landscape) */
@media (max-width: 767px) {
    #hero {
        height: 25vh; /* Default for mobile */
    }
}

  
  

  /* Video container styling */
  .video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* Full height of the section */
    overflow: hidden;
  }

  /* Overlay color with opacity */
  .video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: rgba(0, 0, 0, 0.5);  Black color with 50% opacity */
  }

  /* Video styling */
  .video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the video covers the entire area */
  }

  /* Centering the content */
  #hero .position-absolute {
    position: absolute; /* Positioned absolutely inside the hero section */
    text-align: center; /* Center the text */
    z-index: 2; /* Ensure the text is on top of the video */
    padding: 20px; /* Add some padding if needed */
  }

  .btn-get-started {
    font-size: 1.2rem;
    padding: 10px 20px;
    background-color: #ff7f50; /* Customize the button color */
    color: var(--white-color);
    text-decoration: none;
  }

  .btn-get-started:hover {
    background-color: #ff5722; /* Button hover effect */
  }


/* ----- 
  4 ::Logo Slider 
---  */

  .logo-slider-container {
    width: 100%;
    overflow: hidden; /* Hide logos outside the visible area */
    white-space: nowrap; /* Prevent line breaks */
  }

  .logo-slider {
    display: flex;
    animation: scrollLogos 35s linear infinite; /* Scroll continuously */
  }

  .logo-item {
    flex: 0 0 15%; /* 5 logos visible at a time */
    text-align: center;
    margin: 20px;
  }

  .logo-item img {
    max-height: 100px; /* Adjust logo size */
  }


  /* Optional: Customize border color and style */
  .custome-border-end{
    border-right: 1px solid #ddd !important; /* Light gray border */
}


  /* Add padding to prevent border sticking to the content */
  .icon-container {
    padding-bottom: 10px;
  }

  .services-img-svg{
    height: 100vh;
    
  }
  .svg-icon {
    fill: var(--theme-primary);  /* Change color */
    height: 4rem;  /* Change height */
    width: auto;   /* You can adjust width if needed */
  }

  .svg-icon-white{
    fill: var(--white-color);  /* Change color */
    height: 4rem;  /* Change height */
    width: auto;   /* You can adjust width if needed */
  }



  /* Keyframes for continuous scrolling */
  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

/* ------- 
 5 :: counter
 
 ------ */
  .counter-box {
    padding: 20px;
    text-align: center;
  }
  .counter-box h2 {
    font-size: 3rem;
    /* color: var(--white-color); */
    font-weight: 700;
  }
  .counter-box p {
    font-size: 1.2rem;
    color: var(--theme-navbar-link);
  }
  /* Styling the section */
  .counter-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .step-box {
    text-align: left; /* Align content to the left */
    padding: 20px;
    display: flex; /* Use flexbox for icon and text alignment */
    gap: 10px; /* Add spacing between the icon and text */
    /* align-items: center; Vertically align icon with text */
  }

  .step-icon {
    margin-top: -25px;
    font-size: 3rem;
    color: var(--theme-primary); /* Customize arrow color */
  }

  .step-content h5 {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .step-content p {
    margin: 0;
    color: var(--p-text-color);
  }

/*----
 6 :: testimonial csss  
 ------*/

  .rounded-circle{
    height: 50px;
    width: auto;
  }

  .transform-rotate{
    color: var(--theme-primary);
    transform: rotate(180deg); 
    font-size: 0.8rem;
  }

 
/* ----
 7 :: footer
 ----- */

  .footer-link {
    position: relative; /* Required for the pseudo-element positioning */
    color: var(--white-color); /* Default text color */
    padding-left: 0; /* Initial padding */
    transition: padding-left 0.3s ease; /* Smooth padding transition */
    text-decoration: none; /* Remove underline */
    
  }

  .footer-link:hover {
    padding-left: 10px; /* Increase padding on hover */
  }

  .footer-link::after {
    content: ""; /* Add a pseudo-element for the border */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0; /* Initially collapsed */
    height: 2px; /* Border height */
    background-color: var(--white-color); /* Border color */
    transition: width 0.8s ease; /* Smooth width transition */
    
  }

  .footer-link:hover::after {
    width: 100%; /* Expand the border fully on hover */
  }

  .footer-link:not(:hover)::after {
    width: 0; /* Retract the border back to the left */
  }
  .list-unstyled li{
    padding-top: 15px;
  }

/* ----- 
 8 :: team member 
 ---  */
 .team-member {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensures consistent height for all cards */
  position: relative; /* To position the overlay correctly */
  overflow: hidden; /* Prevents content overflow */
}

.team-member img {
  width: 100%; /* Ensure image fills the container */
  height: 100%; /* Ensure image fills the container */
  object-fit: cover; /* Preserve aspect ratio while covering the container */
  filter: grayscale(100%); /* Convert the image to black and white */
  z-index: 0; /* Ensure the image is beneath the overlay */
  position: relative;
  transition: transform 1s ease, filter 1s ease; /* Smooth transitions with 1 second duration */
}

/* Hover effect specifically on the image */
.team-member:hover img {
  
  filter: grayscale(0%); /* Remove grayscale effect */
}

/* Overlay remains unchanged */
.team-member::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f09c54; /* Overlay color */
  opacity: 0.1; /* Adjust opacity for the overlay */
  z-index: 1; /* Ensure the overlay is above the image but below the text */
  pointer-events: none; /* Ensures the overlay does not interfere with interactions */
}

.team-member h5,
.team-member p,
.team-member a {
  position: relative; /* Make text and links appear above the overlay */
  z-index: 2; /* Ensure text and icons are above the overlay */
}

.team-member a i {
  color: var(--theme-button-color); /* LinkedIn blue color */
  transition: color 0.3s ease;
}

.team-member a i:hover {
  color: var(--theme-primary); /* Darker LinkedIn blue */
}


/* ------- 
 9 :: video section
  -----  */

  .video-container-youtube {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
  }

  .video-container-youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }


/* -------
 10 :: contact us form
 ---------  */

  /* Remove border and add bottom border with hover effect */

        /* cf7 plugin css  */
        .wpcf7-form-control-wrap {
          position: static !important;
      }

  .custom-input {
  border: none;
  border-bottom: 2px solid var(--theme-button-color);
  
  transition: border-color 0.3s ease;
}

.custom-input:focus {
  outline: none;
  border-color: var(--theme-primary); 
}

.custom-input:hover {
  border-color: var(--theme-primary); 
}

/* Icons inside the input */
.input-icon {
  position: absolute;
  left: 10px;
  top: 65%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

/* Styling for the row layout */
textarea.custom-input {
  border-radius: 0.25rem;
  border-bottom: 2px solid var(--theme-button-color);
  /*padding-left: 35px; */
}

/* Styling for buttons and terms in one row */
button[type="submit"] {
  color: var(--white-color);
  background-color: var(--theme-button-color);
  border: none;
  transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
  background-color: var(--theme-primary);
}

.form-check {
  text-align: left;
  margin-top: 10px;
}

/* Adjust the button and terms to be in one row */
.form-check-label {
  font-size: 0.9rem;
  display: inline-block;
  padding-left: 10px; /* Adjust spacing between checkbox and text */
}

/* Hover effect on the input fields */
.custom-input:focus {
  border-color: var(--theme-primary);
  box-shadow: none;
}

.custom-input:hover {
  border-bottom: 2px solid var(--theme-primary);
}

.custom-input:focus {
  transition: 0.5s;
  border-color: var(--theme-primary);
}

.form-check-input:checked {
  border-color: var(--theme-primary);
}

/* Remove default checkbox appearance */
.form-check-input {
  appearance: none;
  /*-webkit-appearance: none;*/
  /*-moz-appearance: none;*/
  width: 20px;
  height: 20px;
  border: 2px solid var(--theme-button-color); /* No border color on unchecked */
  border-radius: 4px; /* Rounded corners */
  position: relative;
  background-color: transparent; /* Transparent background */
  transition: background-color 0.3s, border-color 0.3s;
}

/* When checkbox is checked */
.form-check-input:checked {
  background-color: var(--theme-primary); /* Primary background when checked */
  border-color: var(--theme-primary); /* Border color when checked */
}

/* Custom checkmark when checked */
.form-check-input:checked::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Focus state for checkbox */
.form-check-input:focus {
  outline: none;
  box-shadow: none; /* Remove any default focus outline or glow */
}

/* Custom transition for input focus */
.custom-input:focus,
.form-check-input:focus {
  transition: all 0.3s ease; /* Smooth transition for focus state */
}

/* Ensuring input fields maintain a clean border when focused */
.custom-input:focus {
  border-color: var(--theme-primary);
}


/* property page header  */

  .property-img-head {
    position: relative;
    height: 200px; /* Adjust height as needed */
    overflow: hidden;
    object-fit: cover;
  }

  .property-img-head img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .property-header-title {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--black-color);
      font-size: 2rem; /* Adjust font size as needed */
      /* text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); */
      font-weight: bold;
      float: left !important;
      padding-left: 10%;
  }

/* --------------------   */

.pa-title {
  font-size: 2rem;
  font-weight: bold;
}

.pa-description {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.pa-icon-list {
  list-style: none;
  padding: 0;
}

.pa-icon-list li {
  display: block;
  
  margin-bottom: 10px;
}

.pa-icon {
 
  margin-right: 10px;

}

.pa-image-size{
  /*width: 80% !important;*/
  max-width: 100% !important;
  height: auto;
  /*max-height: 400px;*/
  object-fit: cover;
  padding: 5%;
}
.pa-image-size-custome{
  /*width: 80% !important;*/
  max-width: 100% !important;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  padding: 5%;
}

.custom-img-size-width-50{
  width: 70%;
  height: auto;
  object-fit: cover;
}

.career{
  height: 100vh;
  position: sticky;
  top: 20px; /* Adjust sticky offset from the top */
}
  


/* FAQ    */

.faq-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--theme-primary); /* Primary color */
}
.faq-subtitle {
  font-size: 1.2rem;
  color: var(--p-text-color);
}
.faq-contact {
  background-color: var(--theme-button-color); /* Secondary color */
  color:  var(--white-color);
  padding: 20px;
  text-align: center;
  position: sticky;
  top: 5rem; /* Adjust this value to control the sticky offset */
}
.faq-contact h5 {
  font-size: 1.5rem;
}
.faq-contact a {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: var(--theme-primary); /* Primary color */
  color:  var(--white-color);
  text-decoration: none;
  font-weight: bold;
}
.faq-contact a:hover {
  background-color: var(--theme-primary);
}
.accordion-button {
  background-color: var(--theme-primary); /* Primary color */
  color:  var(--white-color);
  border: none;
}
.accordion-button.collapsed {
  background-color:  #fef4e9; /* Secondary color */
  color: var(--black-color);
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-item {
  border: none;
}
.accordion-body {
  background-color: #fef4e9; /* Light background for content */
  
}
.accordion-button:not(.collapsed) {
  background-color: var(--theme-primary);
  color: var(--white-color);
  outline:none;
  
}
.accordion-item {
  border: none;
}
.accordion-button:focus{
  border: none;
  box-shadow: none !important;
}

.accordion-item:first-of-type .accordion-button{
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed{
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.accordion-button{
  border: 1px solid var(--theme-primary);
  margin-bottom: 1rem;
}

/* Go to top button  */

/* Go to Top Button Styles */
/* Go to Top Button Styling */
.go-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 150px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
}

.go-to-top span {
  color: black;
  font-size: 14px;
  font-weight: bold;
}

.go-to-top .vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 10px;
  font-size: 12px;
}

/* ------------ 
Contact Us Map 
 -------------- */

 .contact-us-map {
  width: 100%;
  margin-top: 20px;
}

.map-container {
  position: relative;
  /*background-color: var(--bg-light);*/
  border: 1px solid #ddd;
  overflow: hidden;
  
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-marker {
  position: absolute;
  width: 70px;
  height: 70px;
  background-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.map-marker:hover {
  transform: translate(-50%, -50%) scale(1.3);
}

.tooltip {
  position: absolute;
  
  background-color: #333;
  color: #fff;
  padding: 5px;
  font-size: 14px;
  border-radius: 3px;
  display: none;
  z-index: 1100;
}

.contact-us-side-popup {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background-color: var(--white-color);
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
  z-index: 1050;
}

.contact-us-side-popup.active {
  right: 0;
}

.contact-us-side-popup .contact-us-popup-header {
  padding: 15px;
  background-color: var(--theme-primary);
  color: var(--white-color);
  text-align: center;
  font-weight: bold;
}

.contact-us-side-popup .contact-us-popup-content {
  padding: 20px;
}

.contact-us-side-popup .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 18px;
  cursor: pointer;
  color: var(--white-color);
  background-color: transparent;
  border: none;
}
.delaware-usa{
  top:43%;
  left: 25.2%;
}
.ahmedabad-india{
  top:52%;
  left:67.4%;
}
.chandigarh-india{
  top:45.3%;
  left:73%;
}
.melbourne-australia{
  top: 84.5%;
  left: 87.6%;
}
.richmond-uk{
  top:36%;
  left:46%;
}




/* ------SVG background hover ---------- */

/* Default icon container */
.hover-container .icon-container {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
}

/* Default state for SVG */
.hover-container svg {
  z-index: 2;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Add background shape using a pseudo-element */
.hover-container .icon-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: #ffffff; /* Default background color */
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
  z-index: 1;
}

/* Hover effect for all shapes */
.hover-container:hover .icon-container::before {
  background: #bfab98; /* Change to desired hover color */
  transform: translate(-50%, -50%) scale(1.2); /* Enlarge the background */
  border-top-left-radius: 70px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 60px;
  border-bottom-left-radius:40px;
  margin-top: -0.7rem;
}

.hover-container:hover svg {
  transform: scale(1.2); /* Enlarge SVG on hover */
  color: #ffffff; /* Change SVG color */
}

/* ------------
Slideshow container 
----------------*/
  .photo-slider-slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    display: flex; /* Flexbox for the layout */
    flex-wrap: wrap; /* Wrap the images into rows */
  }

  /* Each slide will contain 3 images in one row */
  .photo-slider-mySlides {
    display: flex;
    justify-content: space-between; /* Space between images */
    width: 100%;
    margin-bottom: 10px;
  }

  .photo-slider-mySlides img {
    /* 3 images in a row, each takes roughly 1/3 width */
    margin-right: 1%; /* Small space between images */
    object-fit: cover;
    height: 240px;
    
  }

  /* Next & previous buttons */
  .photo-slider-prev, .photo-slider-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    
    user-select: none;
    background-color: var(--theme-primary);
  }

  .photo-slider-prev{
    left: -70px;
  }
  .photo-slider-next {
    right: -60px;
   
  }



  /* Dots */
  .photo-slider-dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--theme-button-color);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }

  .photo-slider-active, .photo-slider-dot:hover {
    background-color: var(--theme-primary);
  }

  .photo-slider-fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }

  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* For Recruitment Page pagination design */

/* Pagination Styling */
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination-recruitment {
  display: flex;
  list-style: none;
  padding: 0;
  justify-content: center;
  align-items: center;
  
}

.pagination-recruitment li {
  margin: 0 5px;
 
}

.pagination-recruitment a,
.pagination-recruitment span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-color);
  /* border-radius: 5px; */
  text-decoration: none;
  color: var(--theme-primary);
  font-weight: bold;
  background: var(--white-color);
  transition: 0.3s;
  
  margin: 1%;

}

.pagination-recruitment a:hover {
  background: var(--theme-primary);
  color: #fff;
}

.pagination-recruitment .current {
  background: var(--theme-primary);
  color: var(--white-color);
  border: 1px solid var(--theme-primary);
}

/*-----------*/


