      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", Sans-serif;
    }

    /* Variables for colors used in the image */
    :root {
        --primary-red: #d30000;
        --dark-blue: #0a1f44;
        --text-gray: #555;
        --light-gray: #f4f4f4;
        --bg-dark: #0a1128;
        --text-blue: #0056b3;
        --card-bg: #ffffff;
        --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    a{ 
        text-decoration: none !important;
    }



    /* Top Header Area */
    .top-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        background: white;
    }

    .logo-area {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .logo-circle {
        width: 50px;
        height: 50px;
        border: 2px solid var(--primary-red);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-weight: bold;
        color: var(--dark-blue);
    }

    .logo-area img {
        max-width: 300px;
    }

    .search-bar {
        flex-grow: 1;
        max-width: 300px;
        margin: 0 20px;
        position: relative;
    }

    .search-bar input {
        width: 100%;
        padding: 8px 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .top-nav {
        display: flex;
        gap: 20px;
        align-items: center;
    }

    .top-nav a {
        text-decoration: none;
        color: var(--primary-red);
        font-weight: 400;
        font-size: 16px;
        margin-left: 5%;
    }

    .contact-btn {
        background: var(--dark-blue);
        color: white !important;
        padding: 5px 30px;
        border: none;
        max-width: 150px;
        border-radius: 15px 15px 0px 0px;
        cursor: pointer;
        font-weight: 500;
        margin-top: 8px;
    }

    /* Red Navigation Bar */
    .red-nav {
        background: var(--primary-red);
        display: flex;
        justify-content: center;
    }

    /* Dropdown Logic */
    .dropdown {
        position: relative;
        background: #d30100;
        padding: 4px 25px;
        cursor: pointer;
        font-weight: 400;
        color: #ffffff;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 280px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 11;
        border-top: 2px solid var(--primary-red);
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a {
        color: #444;
        padding: 12px 20px;
        text-decoration: none;
        font-family:"Roboto Condensed", Sans-serif !important;
        font-weight: 400;
        display: block;
        font-size: 15px;
        border-bottom: 1px solid #eee;
        transition: .3s ease;
    }

    .dropdown-content a:hover {
        background-color: #d30100;
        color: white;
        transition: .3s ease;
    }
    .other-links {
        display: flex;
        align-items: center;
        gap: 30px;
        padding-left: 30px;
    }


    .other-links a {
        color: white;
        text-decoration: none;
        font-size: 15px;
        font-weight: 400;
        padding: 6px 15px;
        transition: .3s ease;
    }

    .other-links a:hover {
        background: white;
        color: #d30100;
        transition: .3s ease;
    }

    .hero-slider{
      position: relative;
      width: 100%;
      height: 600px;
      overflow: hidden;
      font-family: "Poppins", Sans-serif;
      display: flex;
      align-items: center;
  }

/* Background Carousel Logic */
.carousel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Keeps it behind the content */
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Dark overlay to make text pop */
.carousel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); 
}

.carousel-bg::before {
    content: '';
    background-color: transparent;
    background-image: linear-gradient(90deg, #0a1f44 0%, #F2295B00 100%);
    opacity: 0.87;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    opacity: .5;
}

/* Content Layout */
.content-overlay {
  position: relative;
  width: 100%;
  max-width: 1320px;
  padding: 0px 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  z-index: 10;
}

.left-col {
  flex: 1;
}

.left-col h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: bold;
    filter: drop-shadow(2px 4px 5px #00000050);
}

.cta-btn {
  padding: 10px 35px;
  font-size: 16px;
  background: #d30100;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  max-width: 190px;
  text-align: center;
  display: block;
  border: 1px solid transparent;
  transition: .3s ease;
}

.cta-btn:hover {
    background: #0a1f44;
    border: 1px solid white;
    transition: .3s ease;
}

.cta-blue h2 {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
}
.cta-blue {
    padding: 30px 20px;
}

.cta-blue .cta-btn {
    float: right;
    background: white;
    color: red;
}

.cta-blue {
    padding: 30px 20px;
    border-bottom: 1px solid #d5d5d5;
    background: #d30100;
}

.right-col {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.right-col img {
  width: auto;
  max-height: 400px;
}

/* Footer Bar */
.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 10%;
    background: white;
}

.footer-cta h3 {
    color: var(--dark-blue);
    font-size: 32px;
    max-width: 60%;
}

.get-in-touch {
    background: var(--primary-red);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}


/*page sections*/

.page-sec {
    padding: 5% 20px;
}

.page-sec h2{
    font-size: 36px;
    font-weight: bold;
    color: #d30100;
}
.page-sec h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 17px;
    text-transform: uppercase;
}


.page-sec.about img {
    float: right;
    border-radius: 20px;
}

spacer {
    padding: 5px;
    display: block;
}


/*footer*/

.footer {
    background-color: #262626;
    color: #b0b0b0;
    padding: 40px 0 20px 0;
    position: relative;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 20px;
}

/* Logo Section */
.footer-logo {
    text-align: center;
    margin-bottom: 40px;
}

.main-logo {
    max-width: 160px;
}

/* Column Styles */
.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-column p, .footer-column a {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
    text-decoration: none;
}

.info-col p {
    max-width: 300px;
}

.contact-section {
    margin-top: 25px;
}

/* Nav Links */
.links-col ul {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    font-weight: 400;
    color: #fff;
    font-size: 18px;
}

.links-col ul li a:hover {
    color: #ed1c24;
}

/* Map and Socials */
.map-social-col {
    display: flex;
    gap: 15px;
    align-items: center;
}

.map-container {
    flex-grow: 1;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid #555;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background-color: #ed1c24;
    border-color: #ed1c24;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 12px;
}

.footer-bottom strong {
    color: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #ed1c24;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        margin-bottom: 40px;
    }
    .info-col p {
        margin: 0 auto;
    }
    .map-social-col {
        flex-direction: column;
        align-items: center;
    }
    .social-links {
        flex-direction: row;
    }
}




/*client carousel*/


.clientsSlider {
    padding: 20px 5%;
    background: white;
}

.clientsSlider p {
    margin-bottom: 0px;
}

.clientsSlider .row {

    align-items: center;
}


:root {
    --card-gap: 30px;
    --visible-items: 6;
    --visible-itemss: 3;
    --primary-color: #3b82f6;
    --bg-color: #f8fafc;
}



* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.clientS .carousel-slide img {
    width: 130px;
    height: auto;
    border-radius: 10px;
}

.clientS .carousel-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    overflow: hidden;
    padding: 10px 0;
}



.clientsSlider h2, .clientsSlider p {
    color: #ffffff;
}

.container-fluid.clientsSlider {
    background: #0c1e56;
}

.clientS .carousel-track-container {
    overflow: hidden;
    margin: 0; /* Removed margin since buttons are gone */
}

.clientS .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: var(--card-gap);
}

.clientS .carousel-slide {
    /* Width calculation based on visible items and gaps */
    flex: 0 0 calc((100% / var(--visible-items)) - (var(--card-gap) * (var(--visible-items) - 1) / var(--visible-items)));
    height: auto;
    background: transparent;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}


/*associates*/

.associates .carousel-slide img {
    width: 130px;
    height: auto;
    border-radius: 10px;
}

.associates .carousel-container {
    position: relative;
    width: 100%;
    max-width: 1300px;
    overflow: hidden;
    padding: 10px 0;
}





.associates .carousel-track-container {
    overflow: hidden;
    margin: 0; /* Removed margin since buttons are gone */
}

.associates .carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: var(--card-gap);
}

.associates .carousel-slide {
    /* Width calculation based on visible items and gaps */
    flex: 0 0 calc((100% / var(--visible-items)) - (var(--card-gap) * (var(--visible-items) - 1) / var(--visible-items)));
    height: auto;
    background: transparent;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    :root { 
        --visible-items: 2; /* Shows two slides on mobile/small tablets */
        --visible-itemss: 1;
    }
    
}






/* Left Section */

.service-sec {
    background: #f8f8f8;
}




.enquire-btn {
    padding: 12px 30px;
    border: 1px solid white;
    background: transparent;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    width: fit-content;
    border-radius: 4px;
    transition: 0.3s;
}

.enquire-btn:hover {
    background: white;
    color: var(--bg-dark);
}



.service-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: left;
    color: #333;
    border: 1px solid #d0d0d0;
    margin-bottom: 25px;
    min-height: 300px;
    cursor: pointer;
    transition: .8s ease;
}


.service-card:hover  {
    background: #d30100;
    transition: .3s ease;
}

.service-card:hover h3 {
    color:white;
    transition: .3s ease;
}

.service-card:hover p {
    color:white;
    transition: .3s ease;
}


.icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #000;
}

.service-card h3 {
    font-size: 1.1rem;
    color: #d30100;
    margin-bottom: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 1.2s ease;
}

.icon img {
    max-width: 100px;
    border: 1px solid #d0d0d0;
    border-radius: 100%;
    opacity: .5;
    transform: scale(1.0);
    transition: 1s ease;
}

.service-card:hover img{
    opacity: 1;
    transform: scale(1.1);
    transition: .3s ease;
}

.service-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    transition: 1s ease;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .sidebar h1 {
    font-size: 2.5rem;
}
}


/* Specific to the Project Slider */
/* Container sizing */
.projectS .carousel-containers {
    position: relative; /* Required for absolute positioning of buttons */
    padding: 0 40px;    /* Space for the buttons on the sides */
}

.projectS .carousel-track-container {
    overflow: hidden;
}

.projectS .carousel-track {
    display: flex;
    transition: transform 0.4s ease-out;
}

/* 3 slides visible: 100% / 3 = 33.33% */
.projectS .carousel-slide {
    min-width: 33.333%;
    padding: 10px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    border-radius: 5px;
}

/* Grey Carrot Button Styles */
.proj-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 50px; /* Size of the carrot */
    color: #888;     /* Grey color */
    cursor: pointer;
    z-index: 10;
    line-height: 1;
    transition: color 0.3s;
}

.proj-nav-btn:hover {
    color: #333; /* Darkens slightly on hover */
}

.proj-nav-btn.prev { left: 0; }
.proj-nav-btn.next { right: 0; }

.projectS .carousel-slide img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
}

/* Make carousel images look clickable */
.projectS .carousel-slide img {
    cursor: zoom-in;
    transition: opacity 0.3s;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.projectS .carousel-slide img:hover {
    opacity: 0.9;
}

/* Lightbox Background */
.proj-lightbox {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

/* Lightbox Image */
.proj-lightbox-content {
    max-width: 80%;
    max-height: 80%;
    border-radius: 4px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Close Button */
.proj-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.d-md-none{
    display: none;
}





/* Responsive: 1 slide visible on mobile */
@media (max-width: 768px) {
    .projectS .carousel-slide { min-width: 100%; }


    .d-sm-none {
        display: none;
    }

    .d-md-none{
        display: flex;
    }

    .col-sm-9 {
        max-width: 75% !important;
    }

    .col-sm-3 {
        max-width: 25% !important;
        justify-items: flex-end;
        padding-right: 25px;
    }

    .hero-slider .cta-btn {
        margin: 0 auto;
    }

    .cta-blue .cta-btn {
        float: left;
    }

    .cta-blue h2 {
        font-size: 26px;
    }

    .clientsSlider {
        margin-top: 0;
    }

    .page-sec img {
        max-width: 100%;
        margin-top: 20px;
    }

    .page-sec {
        padding: 50px 20px !important;
    }

    .content-overlay{
        flex-direction: column-reverse;
    }

    .right-col img {
        max-width: 250px;
    }

    .left-col h1 {
        font-size: 35px;
        margin-top: 20px;
        text-align: center;
    }

    .hero-slider{
        height: 500px;
    }

    .map-container iframe {
        max-width: 100%;
    }

    .logo-area img {
        max-width: 210px;
    }

    .icon img {
        max-width: 70px;
    }

    .projectSlider {
        background: #f8f8f8;
        padding: 50px 0px !important;
    }

    .projectS .carousel-containers {
        padding: 0px 0px;
    }

    .projectS .carousel-containers {
        position: relative;
        padding: 0px 0px;
    }
    .projectSlider spacer{
        display: none;
    }

    

    .footer-bottom {
        padding: 23px;
    }
    .service-card {
        padding: 0px 15px;
        margin-top: 20px;
        margin-bottom: 0px;
        min-height: 200px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .page-sec.service-sec {
        padding: 10% 5px !important;
    }

    .service-card .icon {
        margin-bottom: 5px;
    }

    .stat-item{
        padding: 30px 0px;
    }

}

.projectSlider {
    background: #f8f8f8;
}



/*mobile-menu*/

:root {
    --primary: #00f3ff;
    --bg-dark: #050505;
    --accent: #ff0055;
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background: #0a0a0a;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Hamburger Trigger */

.menu-trigger {
    padding: 20px;
    padding-right: 30px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    z-index: 100;
    position: relative;
}
.menu-trigger span {
    height: 2px;
    width: 30px;
    background: #d30100;
}

/* Navigation Side Panel */
.side-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    border-right: 1px solid #d30100;
    box-shadow: 10px 0 30px rgb(211 1 0);
    z-index: 1000;
    transition: left var(--transition);
    display: flex;
    flex-direction: column;
}

.side-menu.active {
    left: 0;
}

/* Header & Close Button */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.logo {
    color: var(--primary);
    font-weight: bold;
    letter-spacing: 2px;
    font-size: 1.2rem;
}

.close-btn {
    background: none;
    border: 1px solid #d30100;
    color: #d30100;
    font-size: 24px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    line-height: 1;
}

/* Menu List & Wave Animation */
.menu-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    overflow-y: scroll ;
}

.menu-list li {
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    /* Staggering based on CSS Variable --i */
    transition-delay: calc(var(--i) * 0.08s);
}

.side-menu.active .menu-list li {
    transform: translateX(0);
    opacity: 1;
}

.menu-list li a {
    display: block;
    padding: 18px 25px;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border-left: 0px solid #d30100;
    transition: 0.3s;
}

.menu-list li a:hover {
    color: #fff;
    background: #d30100;
    border-left: 0px solid #d30100;
    padding-left: 35px;
}

.submenu a{
    background: #e1e1e1;
}

nav#sideMenu img {
    max-width: 150px;
}

/* Dropdown/Accordion */
.submenu {
    list-style: none;
    padding-left: 0;
    background: rgba(0, 0, 0, 0.5);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.has-dropdown.open .submenu {
    max-height: 100%;
}

.has-dropdown .arrow {
    float: right;
    font-size: 10px;
    transition: transform 0.3s;
}

.has-dropdown.open .arrow {
    transform: rotate(180deg);
}

/* Visual Effects */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: none;
    z-index: 999;
}

.overlay.active {
    display: block;
}

.scanline {
    position: absolute;
    width: 100%;
    height: 4px;
    background: rgba(0, 243, 255, 0.05);
    animation: scan 6s linear infinite;
    pointer-events: none;
    display: none;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}


/* Page Banner Container */
.page-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-image: url('images/slide1.webp'); /* Replace with your image */
    background-size: cover;
    background-attachment: fixed;
    background-position: bottom center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Dark Overlay for Text Visibility */
.page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Black overlay at 45% opacity */
    z-index: 1;
}

/* Heading Style */
.page-banner h1 {
    position: relative;
    z-index: 2; /* Sits above the overlay */
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    text-transform: capitalize;
    margin: 0;
    text-align: center;
    padding: 0 15px;
}




.stats-section {
    padding: 100px 0;
    background-image: radial-gradient(#dee2e661 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #0c1e56;
}

.stat-icon {
    font-size: 3.5rem;
    background: #d30100;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-right: 20px;
}

.stat-number-container {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
    margin-top: 5px;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #d30100 !important;
    box-shadow: none !important;
}


.feature-icon {
    font-size: 2.5rem;
    color: #000; /* Light color to match the placeholder boxes */
    margin-right: 15px;
    min-width: 50px;
    text-align: center;
}
.feature-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-decoration: none !important;
    color: #d30100;
}
.feature-text {
    color: #000;
    font-size: 1rem;
    line-height: 1.4;
}


body.ach .clientsSlider {
    padding: 5% 20px;
    border-bottom: 1px solid #ffffff21;
}



/*certs*/

.section-title { font-weight: 700; margin-bottom: 30px; color: #333; }
.cert-card { border: none; background: transparent; transition: transform 0.3s; }
.cert-card:hover { transform: scale(1.05); }
.cert-img {
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-height: 311px;
    object-fit: cover;
}
.divider { border-left: 2px solid #e0e0e0; height: 100%; position: absolute; left: 50%; }
@media (max-width: 768px) { 
    .divider { 
        display: none; 
    } 
    .cert-img {
        max-height: 100%;
    }
}

.pointer { cursor: pointer; }
/* Optional: Make modal background darker */
.modal-backdrop.show { opacity: 0.8; }




.map-container iframe {
    width: 100%;
}

.contact-header { color: #dc3545; font-weight: bold; font-size: 0.9rem; }
        .section-title { font-weight: 800; font-size: 2.5rem; margin-bottom: 1.5rem; }
        .info-label { font-weight: bold; margin-bottom: 2px; display: block; }
        .info-row { margin-bottom: 1.5rem; border-bottom: 1px solid #eee; padding-bottom: 10px; }
        
        .form-control { border: none; border-bottom: 1px solid #ccc; border-radius: 0; padding-left: 0; }
        .form-control:focus { box-shadow: none; border-color: #004085; }
        .btn-send { background-color: #002d72; color: white; padding: 10px 30px; border-radius: 4px; font-weight: bold; }

        /* Styling to ensure logos are centered and uniform */
    .logo-container {
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        transition: all 0.3s ease;
        background: #fff;
    }
    .logo-container img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
    .logo-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}


        .associate-card {
            height: 100%;
            padding: 1.5rem;
            border: 1px solid #eee;
            transition: transform 0.2s;
        }
        .associate-card:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        .associate-title {
            font-size: 1.1rem;
            font-weight: 700;
            color: #d30100;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }
        .associate-description {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }
        .section-title {
            font-weight: 800;
            margin-bottom: 0.5rem;
        }
        .section-subtitle {
            color: #777;
            margin-bottom: 3rem;
        }


        .heading-red {
            color: #C11B22;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        .supplier-list {
            font-size: 0.95rem;
            color: #333;
            font-weight: 600;
        }
        .supplier-list .col-md-3 {
            margin-bottom: 0.8rem;
        }
        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        .status-mark {
            color: #d93025; /* The specific red from the image */
            font-size: 0.85rem;
            letter-spacing: 0.05rem;
        }

        .media-side img {
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

        /* Ensuring the two sides maintain equal height on desktop */
        @media (min-width: 768px) {
            .item-wrapper {
                display: flex;
                min-height: 450px;
            }


        }

        @media (max-width: 768px) {
           .status-mark {
    margin-top: 30px;
}

.media-side img{
    max-height: 300px;
}


        }

         

        .project-page .item-wrapper {
    border: 1px solid #dddddd;
    background: #f7f7f7;
}

.detail-table {
            border-collapse: collapse;
            width: 100%;
            font-family: sans-serif;
            color: #555;
        }

        /* Styling the left label column */
        .field-label {
            background-color: #fcfcfc;
            width: 25%;
            font-weight: 500;
            text-transform: uppercase;
            color: #666;
            vertical-align: middle;
            border-right: 1px solid #dee2e6;
        }

        /* Styling the right content column */
        .field-value {
            background-color: #ffffff;
            vertical-align: middle;
        }

        /* Fine-tuning table cell padding and borders */
        .detail-table td {
            padding: 10px;
            border: 1px solid #edf0f2;
            line-height: 1.3;
        }

        button.btn.btn-send.cta-btn {
    background: #0c8b00;
    color: white;
    padding: 15px 30px;
}