 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
           font-family: "AcuminVariableConcept", sans-serif;/* Acumin Pro */
           font-weight: 400;/* Regular */
           /* font-weight: 300; → Light */
           /* font-weight: 400; → Regular */
           /* font-weight: 500; → Medium */
           /* font-weight: 600; → Semibold */
           /* font-weight: 700; → lighter */
         }
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
header {
  position: relative; /* or fixed if you want sticky */
  width: 100%;
  z-index: 1000;
}
#SubMenusProfessionalServices {
            height: 100%;
            margin: 0;
            padding: 0;            
            background: #f9f9f9;
            color: #333;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 5%;
            background: #fff;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
            font-family: "AcuminVariableConcept", sans-serif;
            font-size: 14px;
            font-weight: 300;/* lighter */            
        }
        .logo {
            padding-left: 20px;
        }
        .logo img {
            max-width: 100px;
        }
/* AcuminVariableConcept extraligh*/        
.acumin-extralight {
  font-family: "AcuminVariableConcept", sans-serif;
  font-weight: 200;   /* ExtraLight */
}
/* AcuminVariableConcept acumin-semibold*/       
 .acumin-semibold {
  font-family: "AcuminVariableConcept", sans-serif;
  font-weight: 600;   /* Semibold */
}
/* AcuminVariableConcept semiCondSemiBold*/       
.semiCondSemiBold {
    font-family: "AcuminVariableConcept", sans-serif;
    font-weight: 600;      /* Semibold */
    font-stretch: 87.5%;   /* SemiCond */
}  

/* ======================   MAIN NAV ====================== */
nav{
  padding-left: 100px !important;
}
nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #3B3B3B;
  font-size: 14px;
  position: relative;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: rgb(176, 25, 25);
}

nav ul li a.active {
  font-weight: 600;
  color: #A82319;
}

/* Soft underline */
nav ul li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background:#b90206;/* #b90206;/* rgb(176, 25, 25); */
  transition: width 0.3s ease, left 0.3s ease;
}

nav ul li > a:hover::after,
nav ul li > a.active::after {
  width: 100%;
  left: 0;
}

/* ======================    SUB MENU  ====================== */
/* =========================     SUB MENU CONTAINER  ========================= */
/* ======================    SUB MENU  ====================== */
/* Dropdown container */
.sub-menu{
  list-style: none;
   padding: 10px 20px;
  margin: 0;
  background: #EAEAEA;
  width: 900px;
  position: absolute;
  top: 100%;
  left:0;
  transform:translateY(0);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  row-gap: 5px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  border-top: 2px solid #A82319;
  align-items: start;   /* VERY IMPORTANT */
  justify-items:start;
}

/* COLUMN (GROUP) */
.sub-menu .group{
  display: flex;
  flex-direction: column;
}
.has-submenu{
  position: relative;
}
/* Show dropdown on hover translateX(-50%)  */
.has-submenu:hover .sub-menu{
  opacity:1;
  visibility:visible;
  transform: translateY(0);
}

.sub-menu a{
  transition: all 0.2s ease;
    border-radius:4px;
}
/* List items */
.sub-menu li {
  text-align: left;
  margin: 0;
  display: block;
  width: 100%;
  margin:2px 0;
}

/* Links */
.sub-menu li a {
    display: block;
  padding: 2px 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect */
.sub-menu a:hover{
  background: #eaeaea;
  color: #b90206;
  padding-left: 14px;
}

/* Active item */
.sub-menu li a.active {
  color: #A82319;
  font-weight: 600;
}
/*New of parents and childs sub menus  */
/* Parent items */
.sub-menu .parent{
  font-weight:600;
  margin-bottom:10px;
  margin: 0 0 10px 0;
}
.sub-menu .parent a{
  color: #333;
}
/* Child items (indented + red like image) */
.sub-menu .child{
  margin:4px 0;
  color:#A82319;
}
.sub-menu .child a{
  padding-left:12px;
  color:#A82319;
  font-size: 14px;
    position: relative;
  display: inline-block; /* important for underline width */
}

/* underline */
.sub-menu .child a::after{  
   content: "";
  position: absolute;
  left: 12px;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #A82319, #d94b4b);
  transition: width 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

/* hover */
.sub-menu .child a:hover::after{
  width: calc(100% - 16px);
  opacity: 1;
}
/* Hover */
.sub-menu li a:hover {
    background: #eaeaea;
}
.sub-menu::-webkit-scrollbar{
  width:6px;
}

.sub-menu::-webkit-scrollbar-thumb{
  background:#bbb;
  border-radius:10px;
}

.sub-menu::-webkit-scrollbar-thumb:hover{
  background:#999;
}

/* Hovee Parnt and Child*/
.sub-menu .parent a:hover{
  color:#000;
}
.sub-menu .child a{
  position: relative;
  transition: all 0.25s ease;
}

.sub-menu .child a::before{
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px;
  height: 70%;
  background: #A82319;
  transition: transform 0.25s ease;
}
.sub-menu .child a:hover{
  background: #f5f5f5;
  transform: translateX(6px);
  padding-left: 16px;
  color: #b90206;
}
.sub-menu .child a:hover::before{
  transform: translateY(-50%) scaleY(1);
}
/*New of parents and childs sub menus  */
/* --- Hamburger --- */
.menu-toggle {
  display: none; /* desktop default */
  cursor: pointer;
  font-size: 24px;
  color: #333;
  z-index: 2000;
}
/* ======================  Start  Mobile MENU  ====================== */

@media (max-width: 768px) {

  /* Show hamburger */
     .menu-toggle{
    display: block;
    position: relative;
    z-index: 3000;
  }
header {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
  
  nav {
    position: relative;
    width: 100%;
  }

   nav ul{
    position: fixed;
    top: 0;
    left: -100%; /* hidden */
    width: 280px;
    height: 100vh;
    
    background: #fff;
    flex-direction: column;
    padding-top:20px;
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    z-index: 2000;
  }

  nav ul.active{
    left: 0; /* slide in */
  }
 nav ul li{
    width: 100%;
  }

  nav ul li a{
    padding: 10px 10px;
    font-size: 15px;
    border-bottom: 1px solid #eee;
  }
     body.menu-open::after{
    content: "";
    position: fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background: rgba(0,0,0,0.4);
    z-index: 1500;
  }
  /* Submenus mobile */
  .sub-menu{
  max-height: 0;
  overflow-y: auto;     /* ✅ enable scroll */
  overflow-x: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}
.sub-menu::-webkit-scrollbar{
  width: 4px;
}

.sub-menu::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
}
.has-submenu.open > .sub-menu{
  display: flex;
  max-height: 1000px;   /* 🔥 controlled height */
}
  .sub-menu{
  max-height: 0;
  transition: max-height 0.3s ease;
}
   .sub-menu .group{
    margin-bottom: 5px;
  }
nav ul li a{
    padding: 5px 5px;
    display: block;
    border-bottom: 1px solid #eee;
  }

  .sub-menu .parent a{
    font-weight: 600;
    color: #000;
  }
.sub-menu .child{
    color:#A82319;
  }   
  .sub-menu .child a{
    padding-left: 15px;
    font-size: 14px;
    color:#A82319;
  }   
  
.has-submenu > a::after {
  content: "▼";
  float: right;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.has-submenu.open > a::after {
  transform: rotate(180deg);
}
  }
/* ======================  Start  Mobile MENU  ====================== */

/* ======================   ANIMATION ====================== */
@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ======================   End Mobile MENU  ====================== */
        .search-container {
    display: flex;
    align-items: center;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 20px;
    width: 250px;
    
}

.search-container input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 16px;
}

.search-container i {
    /* color: #555; */
    cursor: pointer;
}

/* Social Media Icons */
/* .social-icons {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icons a {
    text-decoration: none;
    background: #555;
    color: white;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
} */
.WebBanner_hero
{
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.WebBanner_hero img {
  width: 100%;
  max-width: 900px;
  max-height:500px;
  height: auto;
  display: block;
  margin: 0 auto;
}
        .hero {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            /*padding: 20px;*/
          margin-bottom: -2px;
        }
        .hero img {
            max-width: 48%;
            height: auto;
        }

       .hero2 img {
         width: 100%;
         max-width: 500px;
         height: auto;
        display: block;
        margin: 0 auto;
      }
        .container {
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2); /* Shadow on top */
    }  
     .image-hover {
    overflow: hidden;
    border-radius: 12px;
}
 .image-hover img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}
.image-hover:hover img {
    transform: scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border-radius: 12px;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

 
 

/* .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 5%;
    background: white;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
} */

.WebBanner_left, .WebBanner_right {
		margin: 0;      
		padding-left: 10vh;     
	}
  .left, .right {
	width:46%;
  margin: 0;      /* Add this */
  padding: 0;     /* Add this */
  display: flex;
  gap: 15px;          /* space between buttons */
  align-items: center;
  flex-wrap: wrap;    /* optional for responsive */
}
.right {
  display: contents;
  gap: 15px;
}

.btn {
  white-space: nowrap;
}

.btn {
      background-color: #b90206; /* red */
      color: white;
      padding: 15px 30px;
      border: none;
      border-radius: 40px;
      font-weight: bold;
      font-family: Arial, sans-serif;
      font-size: 14px;
      cursor: pointer;
      text-transform: uppercase;
      text-align: center;
      text-decoration: none;
      display: inline-block;
      white-space: nowrap;
    }

    .btn:hover {
      background-color: #b91a21;
    }
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}
        
/* Start Box Services */
.services {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.BoxService {
  width: 260px;
  min-height: 80px;
  border: 1px solid #D6D6D6;
  border-radius: 4px;
  background: #EAEAEA;
  color: #666666;
  padding: 12px 15px;
  /* font-family: "Acumin Concept", sans-serif !important; */
  /* font-weight: 600; */
  font-style: normal;
  text-align: center;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  margin-top: 50px;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease;
}

.BoxService a {
  font-size: 14pt;
  /* font-family: "Acumin Concept", sans-serif; */
  color: inherit;
  text-decoration: none;
  display: block;
  padding-top:5px !important;
}

/* Optional hover (very subtle, professional) */
.BoxService:hover {
  transform: translateY(-4px) scale(1.01);
  background: #E6E6E6;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}
.BoxService:hover a {
  color: #b91a21;
}

.BoxService a {
  transition: color 0.3s ease;
}

.BoxService a:focus-visible {
  outline: none;
}

.BoxService:has(a:focus-visible) {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}
@media (hover: none) {
  .BoxService {
    transition: none;
  }
}
/* End Box Services */

/* Stats Section and Numbers */
.stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 5%; /* flexible padding */
    margin-top: 15px;                  
}

.stats-bordered {
    align-items: center; 
    border-bottom: 2px solid #D1D1D1; /* bottom line */
}

.stat-container {            
    display: flex;
    gap: 150px; 
}

/* Base styling for all stats */
.stat-container .stat {
    position: relative; /* required for ::before */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Vertical line for Countries and Projects */
.stat-container .countries::before,
.stat-container .projects::before {
    content: "";
    position: absolute;
    left: -10px;       /* adjust distance from div */
    top: 28%;          /* start a bit lower */
    height: 100%;       /* line covers most of the div */
    width: 3px;
    background-color: #CFCFCF;
}

/* Numbers styling */
.stat h2 {
    font-size: 35pt;
    font-weight: bold;
    color: #7d7c7c; 
    display: flex;
    align-items: center;
}

.stat h2 .plus {
    font-size: 35pt;
    color: #666464;
    margin-left: 5px;
    margin-top: -17px;
}

.stat p {
    font-size: 12px;
    text-transform: uppercase;
}

/* Hover color */
.stat:hover h2,
.stat:hover p {
    color: #b91a21;
}

.stat h2.counting {
    color: #b91a21;
    transition: color 0.3s ease;
}

/* ====================== Start Responsive adjustments ====================== */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-container {
        flex-direction: column;
        gap: 20px;
        margin-right: 0;
    }

    /* Vertical lines for mobile stacked layout */
    .stat-container .countries::before,
    .stat-container .projects::before {
         content: "";
        position: absolute;
        left: 0;      /* line inside padding-left */
        top: 0;
        height: 100%; /* full height of div */
        width: 2px;
        background-color: #CFCFCF;
    }
}
/* ====================== End Responsive adjustments ====================== */
        /* .projects {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 20px;
        } */
        /* .projects img {
            width: 48%;
            height: auto;
        } */
        .banner {
            width: 100%;
            padding: 20px;
            text-align: center;
        }

        .explore-project {
    position: relative;
     left:6%;
    /*margin-left: 100px;*/
    display: inline-block;
}

.explore-project img {
    width: 100%; 
    height: auto;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 18px; 
    left: 14%;
    transform: translateX(-50%);
    color: white;
    font-size: 2.5vw;
    /* font-weight: bold; */
    text-transform: uppercase;
    text-align: left;
    
    padding: 10px 20px;
}
        .text-overlay {
    position: absolute;
    left: 2%;
    top: 15%;
    width: 41%;
    background: gray; 
    padding: 20px;
    /* border-radius: 5px; */
    color: white;
    margin-top: 83%;
}


.text-overlay h1 {
    font-size: 2.9vw;  
    font-weight: bold;
    text-transform: uppercase;
}

.pmo-shape {
    width: 50px;
    height: 40px;
    display: inline-block;
    position: relative;
    background-color: red; 
    /* margin-left: 5px; */
    display: inline-block;
    margin-left: 20px;
}


.pmo-shape::before {
    content: "";
    position: absolute;
    left: -29px; 
    top: 0;
    width: 50px; 
    height: 40px;
    background-color: gray; 
    border-radius: 50%; 
    
}

.text-overlay p {
    font-size: 1.6vw;  
    font-weight: normal;
}
      
.Project_Grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards per row */
  gap: 20px;
  padding: 20px;
}
.title {
            font-size: 18px;
            font-weight: bold;
        }

        .red {
            color: rgb(176, 25, 25);
        }

        .gray {
            color: rgb(113, 113, 113);
        }
		
		#Contact_us_Info {
                  background-color:rgb(211,211,211);
                  padding:30px !important;
                  width:60% !important;
        }
		
		.BackButtonProjects h1{
			float:right;
			text-align:right;
		}
		.BackButtonProjects h1 a{
			color: #d11f26;
		}
@media (max-width: 1024px) {
  .Project_Grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .Project_Grid {
    grid-template-columns: repeat(1, 1fr); /* 1 per row on phones */
  }
}

/* Each card */
.Project_Cards {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.Project_Cards img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Overlay text styles */
.overlay-text_Header,
.overlay-text-Footer {
  position: absolute;
  color: #f5f5f5;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 1.1vw;
  z-index: 1;
  padding: 5px 10px;
  /*background: rgba(0, 0, 0, 0.4);*/ /* Optional background for readability */ 
}

.overlay-text_Header {
  top: 5%;
  font-size: 1.2vw;
}

.overlay-text-Footer {
  bottom: 5%;
}
/* Modal backdrop */
    .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.5);
    }

    /* Modal content box */
    .modal-content {
      background-color:#f5f5f5;
      margin: 10% auto;
      padding: 20px;
      border-left: 5px solid rgb(176, 25, 25);
      width: 80%;
      max-width: 600px;
      border-radius: 10px;
    }

    .country-list {
      font-weight: bold;
      margin-bottom: 10px;
    }

    .country-list span {
      margin-right: 10px;
    }

    .description {
      font-size: 14px;
      color: #333;
    }

    .close-btn {
      float: right;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      .country-list span {
        display: block;
        margin-bottom: 5px;
      }
    }
 /* ====================== Media Section Main Page ====================== */ 

.media {
    width: 100%;
    background-color: #b90206;
    min-height: 450px;   /* optional */
    height: auto;        /* better */
    margin-top: 50px; /* Space for the video floating above */
    display: flex;
    align-items: center;
    position: relative; /* Essential for absolute children */
    /* font-family: "Acumin Variable Concept", Arial, sans-serif; */
}

.media-block {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* TEXT AREA */
.part {
    /*width: 45%;  Keeps text to the left */
    color: #FEFEFE;
    z-index: 1;
    position: relative;
    left: 0;
}

.part h1 {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.description {
    font-size: 12pt; /* Fixed typo '1w6pt' */
    line-height: 1.6;
    color: #f5f5f5;
    font-weight: 400;
}

/* VIDEO CONTAINER - FLOATING ABOVE */
.video-container {
    width: 65%; /* Adjusted width to match layout */
    position: absolute;
    right: 0px; /* Aligns to right of container */
    top: -120px; /* Pulls it ABOVE the red section */
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);  
    aspect-ratio: 16 / 9;
    background: #000;
    z-index: 10;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 11; /* Above the video */
}

/* PROJECTS FOOTER - OVERLAPPING BOTTOM */
.media-footer {
    width: 100%;
    position: relative;
    /* This pulls the "Explore Our Projects" image up into the red section */
     margin-top: -75px;
    z-index: 20;
}

.media-footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.media-footer img {
    width: 100%;
    height: auto;
    display: block;
}

/* Clean Play Icon */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 12;
    background: rgba(0,0,0,0.2);
    cursor: pointer;
}

/* ====================== Start MOBILE RESPONSIVENESS Media Section Main Page ====================== */
@media (max-width: 768px) {
  
  .media {
    /* flex-direction: column; */
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 40px 0;
  }

  .media img, .media video {
    width: 100%;
    height: auto;
    padding: 10px;
  }

.media img,
.media video,
.mini-logo{
    width: 100%;
    height: auto;
    padding: 0px !important;
  }

    .media-block {
        flex-direction: column; /* Stack vertically */
        text-align: center;
    }
    .part {
        width: 100%;
        margin-bottom: 40px; /* Space for the video below */
    }
.part h1 {
    font-size: 1.5 rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.description {
    font-size: 8pt; /* Fixed typo '1w6pt' */
    line-height: 1.6;
    color: #FFFFFF;
}
    .video-container {
        position: relative; /* Remove floating for mobile */
        width: 100%;
        top: 0;
        right: 0;
    }
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 11; /* Above the video */
}
    .media-footer {
        margin-top: 0; /* Reset overlap for easier scrolling on mobile */
    }
}
/* ====================== End MOBILE RESPONSIVENESS Media Section Main Page ====================== */
 /* ====================== End  Media Section Main Page ====================== */ 

 /* ====================== Start Multi Images ====================== */
 /* Container Setup */
.projects-grid {
  display: grid;  
  grid-template-columns: repeat(3, 1fr);/* We create a 3-column grid */
  grid-auto-rows: auto; /* Adjust row height based on your design needs */
  gap: 0px;
  padding: 20px;
  width: 100%;
    position: relative;
    /* This pulls the "Explore Our Projects" image up into the red section */
  margin-top: -40px;
    z-index: 20;
  }

/* Base Item Styles */
.project-item {
  position: relative;
  overflow: hidden;
}

.project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Spanning Logic */
.span-2-cols { grid-column: span 2; }
.span-2-rows { grid-row: span 2; }
.span-3-rows { grid-row: span 3; }

/* Text Overlays */
.overlay-text {
  position: absolute;
}
.Main-overlay-text{
 position: absolute;
    top: 18px; 
    left: 15%;
    transform: translateX(-50%);
    color: white;
    text-transform: uppercase;
    text-align: left;
}

.mini-logo {
  width: 3vh;
  height: auto;
  vertical-align: middle;
  /* margin-left: 0.3em; */
}
.Main-overlay-text h3 {
  font-size: 16pt;
  font-weight: 900;
  text-transform: uppercase;
}

.project-info {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: #f3f3f3;
}

.project-info h3 {
  font-size: 12pt;
  margin: 0;
}

.project-info p {
  font-size: 10pt;
  font-style: italic;
  margin: 0;
}

/* ====================== Start MOBILE RESPONSIVENESS Multi Images ====================== */

/* Responsive Tweak for Mobile */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr; /* Stack everything on one column */
    grid-auto-rows: auto;
  }
  .span-2-cols, .span-2-rows, .span-3-rows {
    grid-column: span 1;
    grid-row: span 1;
  }
  .Main-overlay-text{
 position: absolute;
    top: 18px; 
    left: 35%;
    transform: translateX(-50%);
    color: white;
    text-transform: uppercase;
    text-align: left;
}
}
/* ====================== End MOBILE RESPONSIVENESS Multi Images ====================== */
 /* ======================End Multi Images ====================== */

 /* ======================Start Section Features  ====================== */
 
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: 100%;
  height: 100%;
  gap: 0;
  display: flex;
  align-items: stretch;   /* IMPORTANT */
}

.feature {  
  padding: 10px 10px 20px;
  text-align: center;
  position: relative;
   flex: 1;
  display: flex;
  flex-direction: column;
}

/* vertical separators */
/* .feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 80%;
  width: 3px;
  background: #d9d9d9;
} */

/* icons */
.icon {
  color: #A82319;
  margin-bottom: 15px;
  background-color: #FEFEFE;
  /* background: #f1f1f0; */
}

/* titles */
.feature h3 {
  font-size: 18px;
  color: #666666;
  padding-top: 10px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.feature-info{
  padding: 30px;
background-color:#f0f1f1 !important;
color:#909195;
display: flex;
flex-direction: column;
 flex: 1;
}
/* text */
.feature-info p {
  font-size: 15px;
  line-height: 1.6;  
  text-align: left;
   flex-grow: 1;
  margin-bottom: 20px;  /* space before button */
  }

/* read more */
.read-more {
  font-size: 12px;
  color: #909195;
  letter-spacing: 1px;
  align-items: center;
  cursor: pointer;
}
#ComprehensiveInfo,#TrustedInfo,#ClinetInfo,#GlobalInfo {
  display: inline-block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.4s ease, opacity 0.4s ease, transform 0.4s ease;
  vertical-align: top;
  
}
/* When Open */
#ComprehensiveInfo.show,
#TrustedInfo.show,
#ClinetInfo.show,
#GlobalInfo.show {
  max-height: 300px;   /* adjust if text longer */
  opacity: 1;
  transform: translateY(0);
  display: block;
}
/* hover effect */
.feature:hover .read-more {
  color: #A82319;
}

 /* ====================== Start MOBILE RESPONSIVENESS Section Features ====================== */
/* responsive */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .features {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .stats-bordered {
    flex-direction: column;
  }

  .stats-bordered .stat:not(:first-child)::before {
    display: none;
  }
}
 /* ====================== End MOBILE RESPONSIVENESS Section Features ====================== */
 /* ======================End  Section Features  ====================== */
 
 /* ====================== Star Style Footer  ====================== */  
  .footer {
  background: #e6e6e6;
  padding: 35px 40px;
  /* font-family: "Acumin Variable Concept", sans-serif; */
  font-size: 12px;
  color: #666666;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  align-items: center;
  max-width: 1300px;
  margin: auto;
}

/* LEFT */
.footer-left h4 {
  color: #CF2214;
  font-size: 13px;
  margin-bottom: 10px;
}

.locations {
  display: flex;
  gap: 40px;
}

.location strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
}

.location p {
  line-height: 1.6;
}

/* CENTER */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer-social a {
  width: 30px;
  height: 30px;
  background: #666;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  text-decoration: none;
  font-size: 14px;
}
/* Copyright */
.footer-copy {
  white-space: nowrap;
  font-size: 12px;
}
/* RIGHT */
.footer-right {
  text-align: right;
  white-space: nowrap;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }

  .locations {
    flex-direction: column;
    gap: 15px;
  }

  .footer-right {
    text-align: center;
    font-size: 11px;
  }
}


/* ====================== End Style Footer  ====================== */  

/* ====================== Start Story Page   ====================== */  

.training-section {
  /* font-family: "Acumin Variable Concept", Arial, sans-serif; */
  width: 100%;  
  
  background-color: #A82319;
  height: 450px; /* Increased height to give the text breathing room */
  margin-top: 3px; /* Space for the video floating above */
  display: flex;
  align-items: center;
  position: relative; /* Essential for absolute children */
}

.training-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.training-content {
  background: #A82319;
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  left: -7%;
}
.training-content h1 {
    font-size: 30pt;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}
/* VIDEO CONTAINER Story - FLOATING ABOVE */
.video-container-story {
    width: 74%; /* Adjusted width to match layout */
    height: 450px;
    left: 40%;
    position: absolute;
    right: inherit;
}

.video-container-story video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.committed-section {
  background: #fff;
  padding: 50px 60px;
  /* font-family: "Acumin Concept", sans-serif; */
  padding-bottom: 10px;
  transform: translateY(30px);
  transition:
    opacity .5s ease,
    transform .5s ease;
  pointer-events: none;
}

.section-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section-hidden {
  display: none;
}
.section-active * {
  animation: fadeUp .6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.committed-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 70px;
}

/* LEFT TITLE */
.committed-title h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
  font-weight: 800;
  color:#A82319;
}

.committed-title span {
  color: #666666;
  font-weight: 200;
}

/* RIGHT CONTENT */
.committed-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}
.content-col{
  position: relative;
  top: 25px;
}
.content-col p {
  font-size: 14px;
  line-height: 1.3;
  color: #666666;
  margin-bottom: 22px;
  
}
.committed-section-part2 {
  background-color:#F4F4F4;
  padding-bottom: 10px;
}
.committed-container-part2{  
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 2.5fr;
  gap: 70px;
  grid-auto-rows: auto; /* Adjust row height based on your design needs */
  padding: 20px;
  width: 100%;
  position: relative;
}
.committed-title-part2{
  margin: 0;
  left: 70%;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 15px;
  overflow: hidden;
}
.committed-content-part2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  position: relative;
  left: 37%;
  top: 30px;
}

.story-image-footer {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 320px !important;
        }
        .story-image-footer img {
            width: 100%;
            height: 320px !important;
        }
/* =========================    📱 TABLET   ========================= */
@media (max-width: 1024px) {
.training-container {
    grid-template-columns: 1fr 1fr;
  }
  .training-content {
    padding: 40px;
  }
  .training-content h1 {
    font-size: 30px;
  }
  .committed-container-part2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .committed-title-part2 {
    left: 0;
    text-align: center;
  }

  .committed-title-part2 img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .committed-content-part2 {
    grid-template-columns: 1fr;
    left: 0;
    gap: 25px;
  }
}

/* =========================     MOBILE ONLY  ========================= */
@media (max-width: 600px) {

  .training-container {
    grid-template-columns: 1fr;
  }

  .training-content {
    padding: 35px 25px;
    text-align: left;
  }

  .training-content h1 {
    font-size: 26px;
  }

  .training-image {
    height: 250px;
  }

  .training-image img {
    height: 100%;
  }
  .committed-section-part2 {
    padding: 20px 15px;
  }

  .committed-container-part2 {
    padding: 0;
  }

  .committed-title h1 {
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
  }

  .committed-content-part2 p {
    font-size: 13px;
    line-height: 1.7;
    text-align: justify;
  }
}

@media (max-width: 768px) {

  
  .video-container-story {
    width: 75%; /* Adjusted width to match layout */
    top: 90%;
    position: absolute;
    right: inherit;
    left: 15%;
}
  .committed-section {
    padding: 60px 40px;
  }

  .committed-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .committed-title h1 {
    font-size: 36px;
  }

  .committed-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* =========================     📱 MOBILE  ========================= */
@media (max-width: 600px) {
  .committed-section {
    padding: 40px 20px;
  }

  .committed-title h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .committed-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-col p {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* ====================== End Story Page   ====================== */  
/* ====================== Start Style training and education  ====================== */  
.empower-section {  
  width: 100%;  
  padding: 0px 0;
  max-height: 380px;   /* reduce height */
}

/* MAIN LAYOUT */
.empower-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  min-height: 390px;
  align-items: center;

}

/* LEFT PANEL */
.empower-content {
  background: #A82319;
  color: #fff;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.empower-content h1 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 15px;
}
.empower-content .description {
  line-height: 1.5;
}
.empower-content p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 360px;
}

/* RIGHT IMAGE */
.empower-image img {
  display: block;
  max-height: 380px;   /* reduce height */
  width: 100%;
  object-fit: cover;
}

.empower-btn-download {
  display: inline-block;
  padding: 14px 28px;
  border: 2px solid #cfcfcf;
  background: #EAEAEA;
  color: #666;
  /* font-family: "Acumin Variable Concept", Arial, sans-serif; */
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Hover effect */
.empower-btn-download:hover {
  border-color: #EAEAEA;
  color: #A82319;
}
.empower-website-caption{
  color: #636466;
  position: relative;
  left: 25%;
  font-size: 14px;
}
.empower-committed-title{
  position: relative;
  left: 20%;
  font-size: 18px;
  line-height: 1.15;
  margin: 0;
  font-weight: 700;
  color:#A82319;
}
.empower-committed-title a{
  /* font-family: "Acumin Concept", sans-serif; */
  color: inherit;
  text-decoration: none;
  display: block;
}
/* Mobile */
@media (max-width: 600px) {
  .empower-btn-download {
    padding: 12px 22px;
    font-size: 13px;
  }
}

/* =========================   📱 TABLET ========================= */
@media (max-width: 1024px) {
  .empower-container {
    grid-template-columns: 1fr 1fr;
  }

  .empower-content {
    padding: 40px;
  }

  .empower-content h1 {
    font-size: 30px;
  }
}

/* =========================
   📱 MOBILE
========================= */
@media (max-width: 600px) {
  .empower-container {
    grid-template-columns: 1fr;
  }

  .empower-content {
    padding: 35px 25px;
    text-align: left;
  }

  .empower-content h1 {
    font-size: 26px;
  }

  .empower-image {
    height: 250px;
  }

  .empower-image img {
    height: 100%;
  }
}
/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .empower-section {
    max-height: none;      /* remove fixed height */
  }

  .empower-container {
    grid-template-columns: 1fr;   /* stack */
    min-height: auto;
  }

  .empower-content {
    padding: 30px 20px;    /* reduce padding */
    text-align: center;
  }

  .empower-content h1 {
    font-size: 24px;       /* smaller title */
  }

  .empower-content p {
    max-width: 100%;
    font-size: 13px;
  }

  .empower-image img {
    max-height: none;      /* remove crop */
    height: auto;
  }

}

/* ====================== End Style oftraining and education  ====================== */  
/* ====================== Start Style Contact us  ====================== */  
.contact-section {
  /* font-family: "Acumin Variable Concept", Arial, sans-serif; */
  padding-top: 30px;
}

.contact-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.8fr 1fr;
  /* grid-template-columns: 1.6fr 0.6fr 1fr; */
  /* gap: 40px; */
  align-items: start;
}

/* LEFT */
.section-title {
  color: #A82319;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 900;
}

.intro-text {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
  max-width: 500px;
}


/* CENTER IMAGE */
.contact-center-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-center-image img {
  max-width: 100%;
  height: auto;
}
.form{
  width: 170% !important;
  padding-top: 25px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #999999;
  padding: 10px 5px;
  margin-bottom: 20px;
  font-size: 16px;
  outline: none;
  color: #666666;
  width: 100%;
}

.contact-form textarea {
  height: 160px;
  border: 2px solid #999;
  resize: none;
}

.contact-form button {
    background: #B60206;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-size: 12px;
  cursor: pointer;
  float: right;
  /* font-family: "Acumin Concept", sans-serif; */
}


/* RIGHT */
.contact-info {
  font-size: 14px;
  background-color: #F4F4F4;
  /* font-family: "Acumin Variable Concept", Arial, sans-serif; */
  padding: 14px;
}

.contact-info h3 {
  color: #A82319;
  font-size: 16px;
  margin: 25px 0 10px;
  font-weight: 700px;
}
.contact-info p {
  font-size: 12px;
  line-height: 1.6;
}

.small-note {
  margin-bottom: 20px;
  font-size: 12px;
}

/* =========================    📱 MOBILE ========================= */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-center-image {
    order: 2;
  }

  .contact-info {
    order: 3;
  }

  .contact-form button {
    width: 100%;
    float: none;
  }
}
/* ====================== End Style Contact us  ====================== */  
 /* ====================== Start Style of Main Projects  ====================== */  
 .project-section {
  /* background: #F4F4F4; */
  padding: 100px;
  /* font-family: "Acumin Variable Concept", sans-serif; */
  position: relative;
  padding-top: 50px; 
}

.project-container {  
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 70px;
}

/* LEFT TITLE */
.project-title h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0;
  font-weight: 800;
  color:#666666;
}


.project-col p {
  font-size: 13px;
  line-height: 1.3;
  color: #666666;
  margin-bottom: 22px;
}

/* RIGHT CONTENT */
.project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.projects-part-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 2%;
    background: #FEFEFE;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0px;
}
/* Image */
.image-col img {
  width: 100%;
  max-width: 480px;
  display: block;
}
/* =========================
   TABLET & MOBILE
   ========================= */
@media (max-width: 992px) {

  .project-section {
    padding: 40px 20px;
  }

  .project-container {
    grid-template-columns: 1fr;   /* Stack vertically */
    gap: 40px;
  }

  .project-title h1 {
    font-size: 32px;
    text-align: left;
  }

  .project-content {
    grid-template-columns: 1fr;   /* One column */
    gap: 30px;
  }

  .projects-part-content {
    padding: 20px;
  }
}

/* =========================
   MOBILE ONLY
   ========================= */
@media (max-width: 576px) {

  .project-section {
    padding: 30px 15px;
  }

  .project-title h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .project-col p {
    font-size: 14px;
    line-height: 1.5;
  }

  .projects-part-content {
    flex-direction: column;
    gap: 20px;
    box-shadow: none; /* optional – cleaner on mobile */
  }
}

/* ====================== Start Style of Sub Projects  ====================== */  
.sub-project-section {
  background: #F4F4F4;
  /* font-family: "Acumin Variable Concept", sans-serif; */
  padding: 30px;
  position: relative;
  padding-top: 50px; 
}

.sub-project-container {  
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 70px;
}

/* LEFT TITLE */
.sub-project-title h4 {
  font-size: 30px;
  line-height: 1.15;
  margin: 0;
  font-weight:200;
  color:#666666;
}


/* RIGHT CONTENT */
.sub-project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}
.sub-project-col p {
  font-size: 13px;
  line-height: 1.3;
  color: #666666;
  margin-bottom: 20px;
}
.sub-project-col h5 {
  font-size: 12px;
  line-height: 1.15;
  margin: 0;
  font-weight:200;
  color:#909195;
  position: relative;
  left: 22%;
}
.sub-project-col h5 a {
  color: inherit;
  text-decoration: none;
  display: block;
  padding-top: 18%;
}

/* ====================== Start Style of Sub Projects As Display  ====================== */  
.sub-projects-part-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px 2%;
    background: #FEFEFE;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
}

.sub-projects-part-container {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      position: relative;
      margin: auto;
      /* left: 20%; */
    }

    .sub-projects-container-main-content {
      flex: 1 1 70%;
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: auto;
      overflow: hidden;
      position: relative;
    }
    #mainImage {
  transition: opacity 0.3s ease;
}
	.main-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
	.sidebar {
      flex: 1 1 25%;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .sidebar img {
      width: 100px;
       height: 60px;          /* 👈 control the thumbnail height */
      object-fit: cover;     /* 👈 keeps it clean and cropped if needed */
      border-radius: 6px;
      cursor: pointer;
      transition: transform 0.2s ease, opacity 0.2s;
      opacity: 0.6;
    }

    .sidebar img.active,
    .sidebar img:hover {
      transform: scale(1.02);
      opacity: 1;
    }
	.SubjectTitle{
text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #222;
	}
	/* Fullscreen overlay for image viewer */
.fullscreen-viewer {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.fullscreen-viewer img {
  max-width: 95%;
  max-height: 95%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
  cursor: zoom-out;
}

.project-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  font-family: "AcuminProReqular", sans-serif;
}

.project-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #909195; /* corporate grey */
  border-radius: 50%;
}
/* ====================== End Style of Sub Projects As Display  ====================== */  
	/* =========================    📱 Start MOBILE Style of Sub Projects ========================= */
  @media (max-width: 992px) {

  .sub-project-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sub-project-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sub-projects-part-container {
    left: 0;               /* remove shifting */
    flex-direction: column;
  }

  .sub-projects-container-main-content {
    flex: 1 1 100%;
  }

  .sidebar {
    flex-direction: row;   /* thumbnails horizontal */
    flex-wrap: wrap;
    justify-content: center;
  }

  .sidebar img {
    width: 90px;
    height: 55px;
  }

  .sub-project-col h5 {
    left: 0;
  }
}
@media (max-width: 576px) {

  .sub-project-section {
    padding: 25px 15px;
  }

  .sub-project-title h4 {
    font-size: 22px;
  }

  .sub-project-col p {
    font-size: 14px;
    line-height: 1.5;
  }

  .sub-projects-part-content {
    padding: 20px 10px;
    box-shadow: none; /* cleaner on mobile */
  }

  .sidebar {
    gap: 8px;
  }

  .sidebar img {
    width: 80px;
    height: 50px;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    padding: 10px 15px;
  }
.logo img {
    max-width: 80px;
  }
  .search-container {
    width: 100%;
    margin: 10px 0;
  }

  /* .social-icons {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin: 20px 0;
  } */
/* .WebBanner_hero
{
  flex-direction: column;
    gap: 10px;
    padding: 10px;
}
.WebBanner_hero img {
  max-width: 100%;
    padding: 0 10px;
} */
  .hero {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

 .hero img {
    max-width: 100%;
    padding: 0 10px;
  }
 .services {
    flex-direction: column;
    padding: 0 10px;
  }

  .service {
    width: 100%;
    margin-top: 20px;
  }
 .left, .right {
        width: 100%;
        margin-bottom: 20px;
    }
  .stats {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .stat-container {
    flex-direction: column;
    gap: 20px;
    margin: 0;
  }

  .stat {
    margin: 0;
  }
.stats-bordered {
    flex-direction: column;
  }

  .stats-bordered .stat:not(:first-child)::before {
    display: none;
  }
  .projects {
    flex-direction: column;
    padding: 10px;
  }

  .projects img {
    width: 100%;
  }

  .explore-project {
    margin-left: 0;
    width: 100%;
  }

  .overlay-text {
    left: 50%;
    top: 10%;
    transform: translate(-50%, 0);
    font-size: 5vw;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }

  .footer-left, .footer-right {
    flex-direction: column;
    gap: 10px;
  }

  .footer-center {
    flex-direction: row;
  }

  .text-overlay {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    background: #555;
    margin: 20px 0;
    font-size: 14px;
    padding: 15px;
  }

  .text-overlay h1 {
    font-size: 5vw;
  }

  .text-overlay p {
    font-size: 4vw;
  }
  
}
/* =========================    📱 End MOBILE Style of Sub Projects ========================= */
/* ====================== End Style of Sub Projects  ====================== */  


/* ====================== Start Style of Sub Menus Projects  ====================== */  
.project-header-section {
  /* background: #f2f2f2; */
  align-items: center;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding-top: 10px;
   box-shadow: 0 2px  0 0 rgba(0,0,0,0.08);
}
.project-header-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 80px;
  align-items: center;
  padding: 0 40px;
}

/* LEFT TITLE */
.project-header-title h1 {
  font-size: 40px;          /* bigger like image */
  line-height: 1.05;
  margin: 0;
  font-weight: 800;
  color: #6a6a6a;
  letter-spacing: -1px;
}

.project-header-title span {
  display: block;
}

/* RIGHT CONTENT */
.project-header-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Paragraph */
.project-header-col p {
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  max-width: 500px;
}

/* Image */
.image-col img {
  width: 100%;
  max-width: 480px;
  display: block;
}
.custom-content-p{
  color: #A82319 !important;  
  font-size: 14px !important;
  font-weight: 600;
}

.project-management-content-col p {
  font-size: 13px;
  line-height: 1.3;
  color: #666666;
  margin-bottom: 18px;
} 
.project-management-content-col-p-h1 {
  font-size: 24px;
  line-height: 1.15;
  margin: 0;
  font-weight:200;
}
.project-management-content-col-p-h3 {
  font-size: 16px;
  line-height: 1.15;
  margin: 0;
  color: #000;
}
.project-management-content-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.project-management-content-col li {
  position: relative;
  padding-left: 22px;
  padding-top: 5px;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.3;
  color: #666666;
}

.project-management-content-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #909195; /* corporate grey */
  border-radius: 50%;
}

/* =========================   START MOBILE ONLY End Style of Sub Menus Projects   ========================= */
/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 992px) {

  .project-header-section {
    padding: 60px 20px;
    height: auto; /* remove fixed height */
  }

  .project-header-container {
    grid-template-columns: 1fr; /* stack */
    gap: 40px;
    padding: 0 20px;
  }

  .project-header-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-header-title h1 {
    font-size: 34px;
  }

  .project-header-col p {
    max-width: 100%;
  }

  .image-col img {
    max-width: 100%;
    margin: auto;
  }
}


/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .project-header-section {
    padding: 40px 15px;
  }

  .project-header-title h1 {
    font-size: 26px;
    line-height: 1.2;
    text-align: center;
  }

  .project-header-content {
    text-align: center;
  }

  .project-header-col p {
    font-size: 14px;
    line-height: 1.6;
  }

  .project-management-content-col-p-h1 {
    font-size: 22px;
  }

  .project-management-content-col li {
    font-size: 13px;
    line-height: 1.5;
  }

  .project-management-content-col li::before {
    top: 6px;
  }
}

/* =========================   END   MOBILE ONLY End Style of Sub Menus Projects  ========================= */
#Fit-Out-Managment,
#Page-Setup {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  position: absolute;
  width: 100%;
  left: 0;
}

#Project_Managment {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

/* Active state */
.section-active {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  position: relative !important;
}

.section-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  display: none;
  transform: translateY(20px) !important;
  position: absolute !important;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-setup-main-content{
  display: grid;
}
.page-setup-main-content-h1 {
  font-size: 30px;
  color: #666666;
  line-height: 1.15;
  margin: 0;
  font-weight:200;
  text-align: center;
}
.page-setup-P{
  position: relative;
  top: 35px;
}
/* ================= CHART WRAPPER ================= */

.chart-page-setup{
  max-width:1300px;
  margin:auto;
  position:relative;
  top: 50px;
}

/* PROGRESS LINE */
.chart-page-setup::before{
  content:'';
  position:absolute;
  top:10px;
  left:0;
  width:0%;
  height:5px;
  background:#c81d17;
  border-radius:5px;
  animation:progressLine 2s ease forwards;
}

@keyframes progressLine{
  to{ width:100%; }
}

/* ================= STEPS ROW ================= */

.steps-page-setup{
  display:flex;
  /* justify-content:space-between; */
  position:relative;
}

.step-page-setup{
  top: 0px !important;
  text-align:center;
  position:relative;
  opacity:0;
  transform:translateY(40px);
  animation:fadeUp .8s ease forwards;
}

.step:nth-child(1){ animation-delay:.3s }
.step:nth-child(2){ animation-delay:.6s }
.step:nth-child(3){ animation-delay:.9s }
.step:nth-child(4){ animation-delay:1.2s }

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ================= TOP NODE ================= */

.node-page-setup{
  width:22px;
  height:10px;
  border-radius:50%;
  margin:0 auto 5px;
  background:#bbb;
  position:relative;
  transition:.4s;
}

.step-page-setup.active .node-page-setup{
  background:#c81d17;
  box-shadow:0 0 0 8px rgba(200,29,23,.15);
}

/* vertical line */
.node-page-setup::after{
  content:'';
  position:absolute;
  width:3px;
  height:30px;
  background:#bbb;
  top:-30px;
  left:50%;
  transform:translateX(-50%);
}

/* arrow */
.node-page-setup::before{
  content:'';
  position:absolute;
  top:-40px;
  left:50%;
  transform:translateX(-50%);
  border-left:8px solid transparent;
  border-right:8px solid transparent;
  border-bottom:14px solid #bbb;
}

/* active arrow color */
.step-page-setup.active .node-page-setup::before{
  border-bottom-color:#c81d17;
}

.step-page-setup.active .node-page-setup::after{
  background:#c81d17;
}

/* ================= CONTENT BOX ================= */

.content-page-setup{
  background:#666;
  color:#fff;
  padding:10px 70px;
  clip-path:polygon(
    0 0,
    calc(100% - 35px) 0,
    100% 50%,
    calc(100% - 35px) 100%,
    0 100%
  );
  transition:.4s ease;
}

.step-page-setup.red .content-page-setup{
  background:#c81d17;
}

.content-page-setup h3{
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
}

.content-page-setup ul{
  font-size:14px;
  line-height:1.5;
  opacity:.95;
}

/* ================= HOVER ================= */

.step-page-setup:hover .content-page-setup{
  transform:translateY(-10px) scale(1.04);
  box-shadow:0 20px 40px rgba(0,0,0,.25);
}

.step-page-setup:hover .node-page-setup{
  transform:scale(1.2);
}
.steps-list {
  list-style: none;
  padding: 0;
  /* margin-top: 14px; */

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  max-height: 0;
  overflow: hidden;

  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    max-height 0.35s ease,
    visibility 0.35s ease;
}
.steps-list li {
  
  position: relative;
  padding-left: 22px;
  /* margin-bottom: 12px; */
  font-size: 14px;
  line-height: 1.6;
  color: #666666;
  /* font-family: "Acumin Pro", sans-serif; */
}

.steps-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background-color: #909195; /* corporate grey */
  border-radius: 50%;
}
.steps-list li {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-page-setup:hover .steps-list li {
  opacity: 1;
  transform: translateY(0);
}

.steps-list li:nth-child(1){ transition-delay:.05s }
.steps-list li:nth-child(2){ transition-delay:.1s }
.steps-list li:nth-child(3){ transition-delay:.15s }

/* Reveal UL on hover */
 .step-page-setup:hover .steps-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  max-height: 300px; /* enough for list */
}

/* ================= RESPONSIVE ================= */

@media(max-width:1000px){

  .steps-page-setup{
    flex-direction:column;
    gap:60px;
  }

  .chart-page-setup::before{
    display:none;
  }

  .content-page-setup{
    clip-path:none;
  }

}
/* ====================== End Style of Sub Menus Projects  ====================== */  
.Fit-Out-Managment-process-chart {
  text-align: center;
}

.Fit-Out-Managment-process-chart h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #666;
}

/* TIMELINE */
.Fit-Out-Managment-timeline {
  position: relative;
  top: -50px;
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
}

/* STEP */
.Fit-Out-Managment-step {
  position: relative;
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Fit-Out-Managment-step:nth-child(1) { animation-delay: .3s }
.Fit-Out-Managment-step:nth-child(2) { animation-delay: .6s }
.Fit-Out-Managment-step:nth-child(3) { animation-delay: .9s }

/* POSITION */
.Fit-Out-Managment-step.top { margin-bottom: 0px; }
.Fit-Out-Managment-step.bottom { margin-top: 0px; }

/* BUBBLE */
.Fit-Out-Managment-bubble {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  z-index: 2;
}

/* Pin tail */
.Fit-Out-Managment-bubble::after {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 22px solid currentColor;
}
.Fit-Out-Managment-step.arrow-top .Fit-Out-Managment-bubble::after {
  bottom: auto;
  top: -21px;
  border-top: none;
  border-bottom: 22px solid currentColor;
}
.Fit-Out-Managment-step.red .Fit-Out-Managment-bubble {
  background: #d91e18;
  color: #d91e18;
}

.Fit-Out-Managment-step.gray .Fit-Out-Managment-bubble {
  background: #6b6b6b;
  color: #6b6b6b;
}

.Fit-Out-Managment-bubble i {
  font-size: 22px;
  margin-top: 10px;
  color: #fff;
}

.Fit-Out-Managment-number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
}

.Fit-Out-Managment-title {
  font-size: 14px;
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: 0.5px;
  color: #fff;
}

.Fit-Out-Managment-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: #cfcfcf;
  border-radius: 10px;
  z-index: 0;
  overflow: hidden;
}

/* Animated fill */
.Fit-Out-Managment-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: #d91e18;
  transition: width 0.6s ease;
}
.Fit-Out-Managment-step:nth-child(1):hover ~ .Fit-Out-Managment-line::after { width: 33%; }
.Fit-Out-Managment-step:nth-child(2):hover ~ .Fit-Out-Managment-line::after { width: 66%; }
.Fit-Out-Managment-step:nth-child(3):hover ~ .Fit-Out-Managment-line::after { width: 100%; }

.Fit-Out-Managment-step.active:nth-child(1) ~ .Fit-Out-Managment-line::after { width: 33%; }
.Fit-Out-Managment-step.active:nth-child(2) ~ .Fit-Out-Managment-line::after { width: 66%; }
.Fit-Out-Managment-step.active:nth-child(3) ~ .Fit-Out-Managment-line::after { width: 100%; }

.Fit-Out-Managment-bubble {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.Fit-Out-Managment-step:hover .Fit-Out-Managment-bubble,
.Fit-Out-Managment-step.active .Fit-Out-Managment-bubble {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.Fit-Out-Managment-text {
  list-style: none;
  max-width: 320px;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
}

.Fit-Out-Managment-text::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}
.Fit-Out-Managment-step:hover .Fit-Out-Managment-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.Fit-Out-Managment-text li {
  position: relative;
  padding-left: 15px; /* space for circle */
  font-size: 12px;
  line-height: 1.3;
}

.Fit-Out-Managment-text li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;          /* ⬅ increase size here */
  height: 8px;         /* ⬅ increase size here */
  border-radius: 50%;
  background: #d91e18;  /* your brand color */
}


.Fit-Out-Managment-step.bottom .Fit-Out-Managment-text::before {
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  top: auto;
  bottom: -10px;
}


.Fit-Out-Managment-step.top .Fit-Out-Managment-text {
  margin-top: 40px;
}

.Fit-Out-Managment-step.bottom .Fit-Out-Managment-text {
  margin-bottom: 40px;
}
@media (hover: none) {
  .Fit-Out-Managment-step:hover .Fit-Out-Managment-text {
    opacity: 0;
    visibility: hidden;
  }
}
.Fit-Out-Managment-step.active .Fit-Out-Managment-text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .Fit-Out-Managment-timeline {
    flex-direction: column;
    gap: 80px;
  }

  .Fit-Out-Managment-line {
    display: none;
  }

  .Fit-Out-Managment-step.top,
  .Fit-Out-Managment-step.bottom {
    margin: 0;
  }

  .Fit-Out-Managment-text {
    text-align: center;
  }
}

/* =========================   Start  Style of Sub Menus Projects (Real Estate Support Services)  ========================= */
#BuildingInspection {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  position: absolute;
  width: 100%;
  left: 0;
}

#RealEstateSupportServices {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
/* =========================   End  Style of Sub Menus Projects (Real Estate Support Services)  ========================= */

/* =========================   Start Section PMO Support Servics   =========================*/

.SectionPMOSupportServics{
  padding:25px 20px;
  border-radius:18px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:0.4s ease;
  opacity:0;
  transform:translateY(40px);
}

.SectionPMOSupportServics.visible{
  opacity:1;
  transform:translateY(0);
}

.SectionPMOSupportServics:hover{
  transform:translateY(-8px);
  box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.SectionPMOSupportServics h2{
  font-size:18px;
  margin-bottom:18px;
  font-weight:800;
  background: linear-gradient(90deg,#b90206,#d22214);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  animation: shine 4s linear infinite;
}

@keyframes shine{
  0%{background-position:0%;}
  100%{background-position:200%;}
}

#ListPMOSupportServices{
  list-style:none;
}

#ListPMOSupportServices li{
  font-size:14px;
  margin-bottom:9px;
  padding-left:22px;
  position:relative;
  transition:0.3s ease;
  cursor:pointer;
}

#ListPMOSupportServices li::before{
  content:"●";
  position:absolute;
  left:0;
  /* color:#d22214; */
  font-size:10px;
  top:5px;
  transition:0.3s;
}

/* Responsive */
/* @media(max-width:900px){
  .container{
    grid-template-columns:1fr;
  }
} */

/* =========================   End Section PMO Support Servics   =========================*/
/* =========================   Start Target Operating Model Development   =========================*/
/* Wrapper */
.tom-wrapper {
  position: relative;
  margin: auto;
}

/* ============================= */
/* ARROW BAR */
/* ============================= */
.tom-principles {
  position: relative;
  background: #dcdcdc;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #d22214;
  font-size: 20px;
  border: 2px solid #A9A9A9;   /* Main border */
}
.tom-principles span {
  position: relative;
}
/* LEFT BORDER TRIANGLE */
.tom-principles::before {
  content: "";
  position: absolute;
  left: -42px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-right: 42px solid #A9A9A9; 
}


/* RIGHT BORDER TRIANGLE */
.tom-principles::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -2px;
  border-top: 27px solid transparent;
  border-bottom: 27px solid transparent;
  border-left: 42px solid #A9A9A9;
}

/* ============================= */ /* CARDS */ /* ============================= */

.tom-cards {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  z-index: 2;
}

.tom-box {
  flex: 1;
  padding: 15px 15px;
  font-size: 12px;
  background: linear-gradient(145deg, #b90206, #d22214);
  color: white;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transition: 0.4s ease;
  cursor: pointer;
}

.tom-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.3);
}

/* Responsive */
@media(max-width: 900px){
  .tom-cards {
    flex-wrap: wrap;
  }
}
/* =========================   End Target Operating Model Development   =========================*/
