body { 
  font-family: 'Poppins', sans-serif;
  font-style: normal;
}
/* .hero { 
  background: url('assets/images/hero-home.jpg') center center/cover no-repeat; 
  color: white; 
  padding: 120px 0; 
  text-align: center;
} */


/* Color Scheme */
:root {
  --main-color: #5c5f5d; /* Steel Blue */
  --neutral-bg: #f8f9fa; /* Light Gray */
  --accent-color: rgb(50, 170, 39); /* Orange/Amber */
  --text-color: #fcfefd; /* Dark Gray for text */
  --footer-bg: #2C3E50; /* Deep Blue for footer */
  --black-color: rgb(2, 4, 2);
}

.cta-btn { 
  background-color: rgb(50, 170, 39); 
  border: none; padding: 10px 10px; 
  color: white; 
  text-decoration: none; 
  font-weight: 400;
  font-size: 24px;
}
.cta-btn:hover { 
  background-color: ​rgb(38, 128, 29); 
  color: white; 
  font-weight: 400;
  font-size: 24px;
}

.cta-btn-form{ 
  background-color: rgb(50, 170, 39); 
  border: none; padding: 10px 10px; 
  color: white; 
  text-decoration: none; 
  font-weight: 400;
  font-size: 18px;
}
.cta-btn-form:hover { 
  background-color: ​rgb(38, 128, 29); 
  color: white; 
  font-weight: 400;
  font-size: 18px;
}

/* Typography */
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--main-color);
  background-color: var(--neutral-bg);
  margin: 0;
  padding: 0;
}

/* Hide dropdown icon on desktop (≥992px) */
@media (min-width: 992px) {
  .nav-item.dropdown .dropdown-toggle::after {
    display: none;
  }
}

/* Optional: Show caret clearly on mobile (<992px) */
@media (max-width: 991px) {
  .nav-item.dropdown .dropdown-toggle::after {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
    content: "";
  }
  .dropdown-menu.show{
    background: transparent;
    border: none;
  }
}



@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Remove gap */
  }
}

.project-desc{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

textarea{
  resize: none;
}

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--main-color);
}

h1 { font-weight: 800; }
    h2 { font-weight: 700; }
    h3 { font-weight: 600; }
    p  { font-weight: 400; }
    strong { font-weight: 500; }

p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Buttons */
button, .btn {
  background-color: var(--main-color);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
  background-color: var(--accent-color);
}

button.navbar-toggler{
  background: transparent;
  outline: none;
  box-shadow: none;
}
/* Scroll Down Arrow */
.scroll-down-arrow, .scroll-up-arrow {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: none;
  z-index: 1000;
}

.getintouch{
  padding-top: 20px;
}

.scroll-down-arrow {
  bottom: 20px;
}

.scroll-up-arrow {
  top: 20px;
  display: none; /* Initially hidden */
}

.arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: solid rgb(50, 170, 39);
  border-width: 0 3px 3px 0;
  padding: 5px;
}

.arrow.down {
  transform: rotate(45deg);
}

.arrow.up {
  margin-top: 80px;
  transform: rotate(-135deg);
}

.arrow:hover {
  border-color: rgb(50, 170, 39);;
}

header {
  position: fixed; 
  top:0; 
  z-index: 1000; 
  width: 100%
}

/* Footer */
footer {
  color: var(--text-color);
  padding: 20px 0;
  height: 15rem;
  background-color: #012515;
  a {
    color: var(--text-color);
  }
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

footer a:hover {
  border-bottom: solid 2px;
}

/* Links */
a {
  color: var(--main-color);
  text-decoration: none;
  transition: color 0.3s ease;
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-color);
}
.navbar-nav {
  border: 0 0 0 2px solid #ddd; /* Light border */
  box-sizing: border-box; /* Ensures padding and border are included in element's dimensions */
  padding: 8px 16px; /* Space inside the box */
  margin: 0 10px; /* Space between elements */
}

ul.navbar-nav.mx-auto{ 
  margin-top: -40px !important; /* center the nav items vertically */
  background-color: #f8f9fa;
}

li.nav-item {
  margin: 0 10px; /* Space between nav items */
}

.navbar-nav .nav-link:hover {
  border: none; /* Remove other borders */
  border-bottom: 2px solid #ddd; /* Add border at the bottom */
  box-sizing: border-box; /* Ensures padding and border are included in element's dimensions */
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.navbar-nav .nav-link.active {
  border-bottom: 2px solid #ddd; /* Add border at the bottom */
  box-sizing: border-box; /* Ensures padding and border are included in element's dimensions */
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

.navbar-brand {
  color: var(--main-color);
}
.navbar-brand:focus, .navbar-brand:hover{
  color: #f7f9fb;
}
.navbar-nav .nav-link, .navbar-nav {
 color: var(--main-color);
 /*.nav-link.active, .nav-link.show{
  color: #0e2a41;
 }*/
 .contact{
    border: solid 2px;
    color: rgb(2, 4, 2);
    padding: 0.5rem 1.5rem 0.5rem 1.5rem;
  }
}

.brand-strategy{
  font-weight: 700;
  font-size: 62px;
  max-width: 40%;
  text-align: left;
  color : #f8f9fa;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  h1{
    color : #f8f9fa;
  }
  .display-4{
    font-weight: 800
  }
  .lead{
    font-weight: 400;
    font-size: 24px;
  }
}

.home-page {
  background:linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
              url('images/ home_latest.png') center center/cover no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
}

.gray-back{
  background: linear-gradient(0deg, rgba(230, 233, 236,0.3), rgba(230, 233, 236, 0.3)),
              url('images/competative.png') center center / contain no-repeat;
  height: 25rem; /* adjust as needed */
  color: white; /* ensures text is visible */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.global-delivery{
  background: linear-gradient(0deg, rgba(230, 233, 236, 0.3), rgba(230, 233, 236, 0.3)),
            url('images/global_workflow.png') center center / contain no-repeat;
  height: 35rem; /* adjust as needed */
  width:8rem;
  color: white; /* ensures text is visible */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.bim-int{
  background: linear-gradient(0deg, rgba(230, 233, 236, 0.3), rgba(230, 233, 236, 0.3)),
  url('images/BIM_int_steps.png') center center / contain no-repeat;
  height: 5rem; /* adjust as needed */
  color: white; /* ensures text is visible */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}


.row .text-right{
  text-align: right;
}
#about-section, #services-section, #project-section, #contact-section, #awards-section {
  line-height: 1.25;
  h6{
    font-weight: 600;
    font-size: 1rem;
    color: var(--accent-color);
  }
  h5{
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--black-color);
  }
  h4{
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--black-color);
  }
  p{
    font-weight: 400;
    font-size: 1.2rem;
  }

  .section-div-gap{
    margin: 9rem;
  }
}

.contact-details__email {
  display: flex;
  align-items: baseline; /* vertically center svg and text */
  gap: 10px; /* space between icon and text */
  svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
  }
}
.contact-details__address {
  display: flex;
  align-items: baseline; /* vertically center svg and text */
  gap: 10px; /* space between icon and text */
  svg {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
  }
}

.about-page {
    /* background: url('images/struct-lab-about.png') center center/cover no-repeat; 
    background-attachment: fixed;*/
    min-height: 15vh;
}

.services-page {/* 
  background: url('images/struct-lab-service.jpeg') center center/cover no-repeat;
  background-attachment: fixed; */
  min-height: 15vh;
}

#service-struct {
  h5{
    color: var(--black-color);
  }
}

.markets-page {
  /* background: url('images/struct-lab-market.jpeg') center center/cover no-repeat;
  background-attachment: fixed; */
  min-height: 15vh;
}

.contact-page {
  /* background: url('images/struct-lab-contact.jpeg') center center/cover no-repeat;
  background-attachment: fixed; */
  min-height: 15vh;
}
  
  .step {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
  }
  
  .step-card {
    min-width: 20rem;
    background-color: #ffffff;
    min-height: 37rem;
    .zoom-container{
      overflow: visible;
    }
  }

  .step-pill {
    display: inline-block;
    min-width: 250px;
    min-height: 300px;
    text-align: left;
    background-color: #ffffff;
    cursor: pointer;
    h4{
      font-weight: 700;
      font-size: 1.5rem;
      color: rgb(2, 4, 2);
      background-color: #ffffff;
      margin: 10px;
    }
    p{
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--main-color);
      background-color: #ffffff;
      margin: 13px;
    }
  }
  .step-pill:hover > h4:hover{
    font-weight: 700;
    font-size: 1.5rem;
    color: rgb(50, 170, 39) !important;
    background-color: #ffffff;
  }
  .step-arrow {
    display: inline-block;
    padding: 0 10px;
    font-weight: bold;
    color: #87adcd;
    font-size: 24px;
  }
  @media (max-width: 768px) {
    .global-delivery{
      display: none;
    }
    .cta-btn { 
      font-size: 20px;
    }
    .getintouch{
      margin-top: 20px;
      padding-top: 20px;
    }
    .brand-strategy{
      max-width: 100%;
    }
    li.nav-item {
      width: fit-content; /* Space between nav items */
    }
    .step-arrow {
      display: block;
    }
  }
  @media (max-width: 575px) {
    .cta-btn { 
      font-size: 18px;
    }
  }
.zoom-container {
    overflow: hidden;
  }
  
  .zoom-image {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
    object-fit: cover;
  }
  
  .zoom-image:hover {
    transform: scale(1.1); /* Adjust zoom level (1.1 = 10% zoom) */
  }


  #map { position: absolute; top: 0; bottom: 0; width: 100%; }
    .marker {
      background-image: url('https://docs.maplibre.org/maplibre-gl-js/docs/assets/pin.png');
      background-color: #FF5733; /* Single color for all markers */
      background-size: cover;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      cursor: pointer;
    }

    .uniform-marker {
      background-color: #FF5733; /* Single color for all markers */
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid white;
      cursor: pointer;
    }

    /* Loading indicator */
    .map-loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      background: white;
      padding: 10px;
      border-radius: 5px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
    }


    .selecteddate{
      background-color: var(--accent-color) !important;
      color: var(--black-color);
      border: solid var(--text-color) 1px;
      h4 {
        color: var(--black-color);
        font-weight: 800;
        margin-top: 1rem;
        margin-left: 2rem;
      }
    }

    .border.rounded{
      border: solid var(--black-color) 1px !important;
      margin: 1rem;
      border-radius: 0px !important;
      -webkit-border-radius: 0px !important;
      -moz-border-radius: 0px !important;
      -ms-border-radius: 0px !important;
      -o-border-radius: 0px !important;
}
    .month-year{
      padding: 2rem;
    }

    .time-zone{
      padding: 2rem;
    }
    .btn.rounded-circle {
      width: 50px;
      height: 50px;
      padding: 0;
      margin: 2px;
      color: var(--black-color);
      background-color: inherit; /* Matches the body background color */
      border: solid var(--black-color) 1px;
    }
    .btn:hover{
      background-color: var(--black-color);
      color: var(--text-color);
    }

    .btn.rounded-circle.disabled {
      background-color: #e9ecef;
      color: #6c757d;
      pointer-events: none;
      cursor: not-allowed;
      border: solid var(--text-color) 1px !important;
    }

    .btn.rounded-circle.btn-dark{
      background-color: var(--black-color);
      color: var(--text-color);
    }

    #timeSlots, #timeSlotsA{
      .btn{
        color: var(--black-color);
        background-color: inherit; /* Matches the body background color */
        border: solid var(--black-color) 1px;
      }
      .btn:hover {
        background-color: var(--black-color);
        color: var(--text-color);
      }
      .btn.disabled{
        background-color: #e9ecef;
        color: #6c757d;
        pointer-events: none;
        cursor: not-allowed;
        border: solid var(--text-color) 1px !important;
      }
      .btn.btn-dark{
        background-color: var(--black-color);
        color: var(--text-color);
      }
      .btn.btn-primary{
        background-color: var(--black-color);
        color: var(--text-color);
      }
  
    }
  
    form {
      label{
        font-weight: 600;
        color: var(--black-color);
      }
      .checkbox-text{
        font-weight: 400;
        color: var(--black-color);
        display: inline;
      }
      textarea {
        min-height: 10rem !important;
      }
    }

    .toast-div{
      height: 4rem;
      font-weight: 400;
      font-size: 1.5rem;
      width: 100%;
      background-color: var(--black-color); 
    }
    #schedule-section, #intake-section{
      h7{
        color: var(--black-color);
      }
      h6{
        color: var(--accent-color);
        font-weight: 600;
      }
      h5{
        color: var(--black-color); 
        font-weight: 600;
      }
    }
    /* projects page */
    .projects-pageheading{
      font-size: 36px !important;
    }
    #project-section h4{
      margin-top:10px;
      font-size: 28px !important;
    }
     #project-section p{
      margin-top:10px;
      font-size: 24px !important;
    }
    @media (max-width: 1024px) {
      .step-card {
        min-height: 0 !important;
      }
      .projects-pageheading{
        font-size: 32px !important;
      }
      #project-section h4{
        font-size: 20px !important;
      }
      #project-section p{
        font-size: 18px !important;
      }
    }

    @media (max-width: 768px) {
      .projects-pageheading{
        font-size: 28px !important;
      }
    }
