.text-main {
    color: var(--mainColor);
    opacity: 1;
}
.logo {
    width: 160px;
    height: auto;
}
.header-social-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-social-icons ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.header-social-icons ul li {
    font-size: 14px;
    font-weight: 400;
    color: #ffff;
    display: inline-block;
}
.header-social-icons ul li a {
    width: 30px;
    height: 30px;
    font-size: 15px;
    margin-left: 3px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--mainColor);
    background-color: var(--whiteColor);
    box-shadow: var(--boxShadow);
}
.header-social-icons ul li a:hover {
    color: var(--fix-whiteColor);
    background-color: var(--mainColor);
}

@media (max-width: 991px) {
    .header-social-icons {
      margin-top: 6px;
    }
}

.footer-logo-area a img  {
    background: white;
    padding: 6px;
    border-radius: 20px 0px 20px 0px;
    border: 4px solid var(--secondColor);
}

/* Our Project Section */
.our-project-card {
  aspect-ratio: 16 / 12;
  position: relative;
  margin-bottom: 1rem;
  border-radius: 15px;
  break-inside: avoid;
  overflow: hidden;
}
.our-project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}
.our-project-card::before {
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none; /* Allow hover events to pass through */
  z-index: 1;
}
.our-project-card .our-project-text {
  width: 100%;
  padding: 20px 20px 25px;
  z-index: 9;
  text-align: center;
  position: absolute;
  bottom: 0;
  transition: 0.5s ease;
  transform: translateY(0px) scale(1);
}
.our-project-card .our-project-text h4 {
  margin-bottom: 0;
  color: var(--fix-whiteColor);
  font-size: 14px;
  font-weight: 600;
}
.our-project-card:hover::before {
  height: 100%;
}
.our-project-card:hover img {
  transform: scale(1.1);
}
.our-project-card:hover .our-project-text {
  transform: translateY(0px) scale(1.1);
}
/* End Our Project Section */

/* Award and Licenses Section */
.award-card {
    background: #fff;
    padding: 5px;
    border-radius: 15px;
    height: 100%;
    border: 3px solid var(--secondColor);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3),
                inset 0 0 5px rgba(182,143,27,0.5); /* 3D depth effect */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.award-card-inner {
    height: 100%;
    padding: 5px;
    border-radius: 15px;
    border: 3px double var(--mainColor);
}

.award-img {
    height: 180px;
    object-fit: contain;
    width: 100%;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 14px rgba(0,0,0,0.4),
                inset 0 0 8px rgba(182,143,27,0.6);
}

.award-card h6 {
    font-size: 13px;
    color: var(--blackColor);
}

.iso-card {
    position: relative;
    border-radius: 15px;
    padding: 10px;
    margin-top: 30px;
    border-left: 5px double var(--secondColor);
    border-bottom: 5px double var(--secondColor);
    border-right: 5px double var(--mainColor);
    border-top: 5px double var(--mainColor);
    box-shadow: 4px 4px 10px rgba(0,0,0,0.3),
                inset 0 0 5px rgba(26,77,143,0.4); /* Depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iso-card:hover {
    transform: translateY(-5px);
    box-shadow: 6px 6px 14px rgba(0,0,0,0.4),
                inset 0 0 8px rgba(26,77,143,0.5);
}

.iso-card h6 {
    font-size: 14px;
    color: var(--blackColor);
}
.iso-card p {
    font-size: 13px;
    color: var(--blackColor);
}
/* End Award and Licenses Section */

/* Partner slider section */
.partner-slider-wrap {
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding-top: 30px;
    width: 100%;
}

.partner-slider-track {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: scroll-left 80s linear infinite;
}

.partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    max-width: 150px;
    height: 120px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--secondColor);
    background: #fff;
    box-sizing: border-box;
}

.partner-logo img {
    max-width: 100%;
    max-height: 120%;
    object-fit: contain;
    transition: filter 0.3s ease;
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media screen and (max-width: 768px) {
    .partner-logo {
        min-width: 120px;
        max-width: 120px;
        height: 80px;
    }
}
/* End Partner slider section */

/* About us section */
.about-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--boxShadow);
    border-left: 4px solid var(--secondColor);
    padding: 30px 30px;
    transition: 0.3s ease;
}

/* Managing Director section */
.md-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--boxShadow);
    padding: 30px 30px;
    transition: 0.3s ease;
}

.md-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

/* PHOTO FRAME */
.md-photo-wrapper {
    background-color: var(--thirdColor);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.md-photo-frame {
    display: inline-block;
    background: #fff;
    border: 3px solid var(--secondColor);
    border-radius: 12px;
    padding: 3px;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
}

.md-photo-frame-inner {
    border: 2px solid var(--mainColor);
    border-radius: 8px;
    padding: 3px;
}

.md-photo-frame img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.md-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 15px;
}

.md-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #eee;
    margin-bottom: 0;
}

.md-bio p {
    color: var(--blackColor);
}

@media (max-width: 768px) {
    .md-photo-wrapper {
        margin-bottom: 20px;
    }
}
/* End Managing Director section */

/* Our Team Structure */
.org-level-wrapper {
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

.org-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
}

.org-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--boxShadow);
    border: 1px solid var(--secondColor);
    padding: 10px;
    width: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.org-card img {
    width: 100px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

.org-card h4 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.org-card p {
    font-size: 12px;
    color: #555;
    margin: 0;
}

.connector {
    width: 2px;
    height: 30px;
    background: #374875;
    margin: 0 auto;
    position: relative;
}

.connector::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #374875;
}

@media (max-width: 768px) {
    .org-level {
      flex-direction: column;
      align-items: center;
    }

    .connector {
      height: 30px;
    }

    .org-card {
      width: 90%;
      max-width: 300px;
    }
}
/* End Our Team Structure */

/* Policies area */
.policy-card {
    background: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    color: #03163B;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--mainColor);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    border-top-color: #03163B;
}

.policy-header {
    display: flex;
    align-items: center;
}

.icon-circle {
    background-color: var(--secondColor);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle .icon {
    font-size: 22px;
    color: #fff;
}

.policy-card h3 {
    font-size: 20px;
    margin: 0;
    color: #03163B;
}

.policy-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.policy-card p i {
    color: #6495ed;
}
/* Policies area */

/* Quality Safety Policy, Plan & Requirements area */
.quality-safety-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--secondColor);
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.quality-safety-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.quality-safety-card h5 {
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    color: #03163B;
    margin-top: 10px;
    border-bottom: 2px solid var(--secondColor);
    display: inline-block;
    padding-bottom: 5px;
}

.quality-safety-card ol {
    margin: 20px 0 30px;
    padding-left: 25px;
}

.quality-safety-card li {
    margin-bottom: 15px;
    line-height: 1.7;
    position: relative;
}

.quality-safety-card li::marker {
    font-weight: 500;
    color: var(--mainColor);
}

.quality-safety-card li strong {
    font-weight: 500;
    text-transform: uppercase;
}

.quality-safety-card li h6 {
    color: var(--bs-body-color);
    font-weight: 600;
    text-transform: uppercase;
}

.quality-safety-card li p {
    color: var(--bs-body-color);
}

.quality-safety-card ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.quality-safety-card ul li {
    margin-bottom: 10px;
    color: #444;
}

.quality-safety-card p {
    margin-top: 12px;
    line-height: 1.8;
    color: #444;
}

.quality-safety-card p strong {
    color: #03163B;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .quality-safety-card {
        padding: 30px 20px;
    }
}
/* End Quality and Safety Policy, Plan & Requirements area start */

/* Clients Section */
.clients-section {
    padding: 40px 0;
    background-color: #f9f9f9;
    text-align: center;
}
.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(125px, 1fr));
    gap: 10px;
    justify-items: center;
    margin-top: 20px;
}
.client-logos .logo-item {
    background-color: #fff;
    align-content: center;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--secondColor);
    overflow: hidden;
}
.client-logos .logo-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.client-logos .logo-item img:hover {
    transform: scale(1.1);
}
/* End Clients Section */

/* Career Section */
.career-section {
    padding: 50px 20px;
    background: #f8fafc;
    font-family: 'Poppins', sans-serif;
}

.default-section-title h5 {
    line-height: 1.4;
    color: var(--blackColor);
    font-size: 20px;
    font-weight: 700;
}
  
/* Left Column */
.openings-title {
    line-height: 1.4;
    color: var(--blackColor);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}
  
.job-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(3, 22, 59, 0.08);
    border-left: 4px solid var(--secondColor);
    transition: transform 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.job-card h5 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #03163B;
    margin-top: 10px;
    border-bottom: 2px solid var(--secondColor);
    display: inline-block;
    padding-bottom: 5px;
}

.job-card ol {
    margin: 20px 0 30px;
    padding-left: 25px;
}

.job-card li {
    margin-bottom: 15px;
    line-height: 1.7;
    position: relative;
}

.job-card li::marker {
    font-weight: 500;
    color: var(--mainColor);
}

.job-cardli strong {
    font-weight: 500;
    text-transform: uppercase;
}

.job-card li h6 {
    color: var(--bs-body-color);
    font-weight: 600;
    text-transform: uppercase;
}

.job-card li p {
    color: var(--bs-body-color);
}

.job-card ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-top: 10px;
}

.job-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #444;
}

.job-card p {
    margin-top: 12px;
    line-height: 1.8;
    font-size: 14px;
    color: #444;
}

.job-card p strong {
    color: #03163B;
    text-transform: uppercase;
}
  
.job-card:hover {
    transform: translateY(-4px);
}
  
/* Right Column */
.career-form {
    background: #fff;
    padding: 30px 35px;
    margin-top: 0;
    border-radius: 12px;
    border-left: 4px solid var(--secondColor);
    box-shadow: 0 8px 24px rgba(3, 22, 59, 0.08);
}
  
.career-form .form-title {
    font-size: 24px;
    margin-bottom: 25px;
    color: #03163B;
}

.career-form .form-group {
  margin-bottom: 20px;
}

.career-form .form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.career-form input, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.career-form select {
    display: block !important;
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
.career-form .nice-select {
    display: none;
}
/* End Career Section */

/* Project Grid Section */
.masonry-grid {
  column-count: 4;
  column-gap: 1rem;
  margin-top: 35px;
}

@media (max-width: 992px) {
  .masonry-grid {
    column-count: 2;
  }
}
@media (max-width: 576px) {
  .masonry-grid {
    column-count: 1;
  }
}

/* Contact Form Section */
.bd-form .form-group .text-danger {
    font-size: var(--fontSize);
    font-family: var(--fontFamily2);
    margin-bottom: 15px;
    color: var(--paragraphColor);
    line-height: 1.8;
}
.bd-form .form-group .text-danger p {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

/* Loader */
#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 15%);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.spinner-border {
    --bs-spinner-border-width: 0.18rem !important;
}