/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.bas-padding { padding: 80px 0 100px;}

.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

.text-variant1 { padding-bottom:15px;}

 /* main cards grid – full width two columns */
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.8rem;
      margin: 2.5rem 0 3rem;
    }

    /* industrial cards (like metal plates) */
    .mission-card, .vision-card {
      background: rgba(10, 25, 35, 0.85);
      backdrop-filter: blur(10px);
      border: 1px solid #ffb34760;
      border-radius: 60px 20px 60px 20px;   /* rugged industrial shape */
      padding: 3rem 2.8rem 3rem 3rem;
      box-shadow: 0 30px 40px -15px rgba(0,0,0,0.8), 0 0 0 2px rgba(255,180,70,0.15) inset;
      transition: all 0.25s ease-in-out;
      position: relative;
      overflow: hidden;
    }

    .mission-card:hover, .vision-card:hover {
      transform: translateY(-10px) scale(1.01);
      border-color: #ffb347;
      box-shadow: 0 40px 50px -12px black, 0 0 0 3px #ffb34780 inset;
    }

    /* diagonal industrial stripe */
    .mission-card::after, .vision-card::after {
      content: "";
      position: absolute;
      top: -20%; right: -10%;
      width: 180px; height: 180px;
      background: rgba(255, 180, 70, 0.04);
      transform: rotate(25deg);
      border-radius: 30% 70% 70% 30% / 30% 55% 45% 70%;
      pointer-events: none;
    }

    /* icon animated header */
    .icon-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 2rem;
    }

    .icon-header .anim-icon {
      font-size: 4.5rem;
      line-height: 1;
      color: #ffb347;
     
      animation: none; /* base – we use hover or infinite on specific icons */
    }

    /* each card gets a different infinite animation for icons */
    .mission-card .anim-icon {
      animation: hammerShake 3.5s infinite ease-in-out;
    }
    .vision-card .anim-icon {
      animation: hammerShake 3.5s infinite ease-in-out;
    }

    @keyframes hammerShake {
      0% { transform: rotate(0deg) scale(1); }
      5% { transform: rotate(15deg) scale(1.1); }
      10% { transform: rotate(-10deg) scale(1.1); }
      15% { transform: rotate(5deg) scale(1.05); }
      20% { transform: rotate(0deg) scale(1); }
      100% { transform: rotate(0deg) scale(1); }
    }

    @keyframes binocularPulse {
      0% { filter: drop-shadow(0 0 2px #ffb347); transform: scale(1); }
      100% { filter: drop-shadow(0 0 16px #ffcc77); transform: scale(1.08); }
    }

    .icon-header h2 {
      font-size: 2.2rem;
	  font-family: "Oxygen", serif;
      font-weight: 600;
      letter-spacing: -0.02em;
      text-transform: uppercase;
      color: #fad59f;
      border-left: 6px solid #ffb347;
      padding-left: 1.3rem;
      text-shadow: 3px 3px 0 #0a1f2e;
    }

    /* text styling with industrial feel */
    .statement p {
      font-size: 1.125rem;
	  text-align:justify;
      color: #deecf5;
      margin-bottom: 1.8rem;
      font-weight: 400;
      line-height: 1.6;
      text-shadow: 1px 1px 0 #00000040;
      position: relative;
      z-index: 2;
    }

    .statement .strong-lead {
      font-weight: 700;
      color: #ffb347;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      background: #1f3f4e;
      padding: 0.15rem 0.8rem;
      border-radius: 20px;
      display: inline-block;
      font-size: 1.1rem;
      margin-right: 8px;
      border: 1px solid #ffb34780;
    }

    /* profile reference with animated icon */
    .profile-foot {
      margin-top: 2.5rem;
      display: flex;
      align-items: center;
      gap: 15px;
      border-top: 2px dashed #ffb34750;
      padding-top: 1.5rem;
      font-size: 1.1rem;
      color: #bcd1df;
    }

    .profile-foot i {
      font-size: 1.8rem;
      color: #ffb347;
      animation: spinSlow 5s infinite linear;
    }

    @keyframes spinSlow {
      0% { transform: rotate(0); }
      100% { transform: rotate(360deg); }
    }

    .profile-foot span {
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    /* full width bottom strip */
    .fullwidth-bottom {
      margin-top: 4rem;
      text-align: center;
      border-top: 2px solid #ffb34740;
      padding-top: 2.2rem;
      font-size: 1.25rem;
      text-transform: uppercase;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 30px;
      flex-wrap: wrap;
    }

    .fullwidth-bottom i {
      font-size: 2.2rem;
      color: #ffb347;
      transition: 0.2s;
    }

    .fullwidth-bottom i:hover {
      transform: scale(1.3) rotate(15deg);
    }

    .fullwidth-bottom .footer-quote {
      color: #ffcf8a;
      font-weight: 500;
    }

    /* responsiveness */
    @media (max-width: 950px) {
      .mv-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
      }
      .icon-header h2 {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 600px) {
      .industrial-wrap {
        padding: 2rem 1rem;
      }
      .profile-header {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
      }
      .icon-header {
        flex-wrap: wrap;
      }
      .statement p {
        font-size: 1.15rem;
      }
    }

    /* additional industrial icon animation on card load */
    .bolts {
      display: inline-block;
    }

    i.fa-gear, i.fa-industry {
      transition: transform 0.4s;
    }
    .mission-card:hover i.fa-gear-complex, .vision-card:hover i.fa-compass {
      animation: none; /* we keep existing infinite */
    }

    /* extra rotating bolts in background (optional) */
    .bg-bolt {
      position: absolute;
      font-size: 15rem;
      color: #ffb34708;
      bottom: -20px; left: -40px;
      transform: rotate(25deg);
      z-index: 0;
    }
	
	
	 /* grid layout for the four pillars */
    .pillars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin: 3rem 0;
    }

    /* card style – professional, clean, slightly elevated */
    .pillar-card {
      background: #ffffff;
      border-radius: 28px;
      padding: 2.2rem 2rem 2rem 2rem;
      box-shadow: 0 15px 30px -12px rgba(0,45,70,0.2);
      transition: transform 0.2s ease, box-shadow 0.2s;
      border: 1px solid #eef5fa;
      display: flex;
      flex-direction: column;
    }
    .pillar-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 40px -16px #00315370;
      border-color: #b9d9f0;
    }

    /* card header with numbering + icon */
    .card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 1.5rem;
      border-bottom: 2px solid #e2edf6;
      padding-bottom: 1rem;
    }
    .card-header .num-icon {
      font-size: 2.6rem;
      font-weight: 700;
      background: #003d66;
      color: white;
      width: 60px;
      height: 60px;
      border-radius: 30px 10px 30px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 0 #001f33;
    }
    .card-header h2 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #003459;
      letter-spacing: -0.01em;
	  line-height:38px;
    }

    /* content style with bullet lists */
    .pillar-content {
      flex: 1;
    }
    .pillar-content p {
      font-size: 1.1rem;
      margin-bottom: 1.2rem;
      color: #2a4055;
    }
    .pillar-content ul {
      list-style: none;
      margin-bottom: 1.2rem;
    }
    .pillar-content li {
      font-size: 1.05rem;
      padding: 0.4rem 0 0.4rem 1.8rem;
      position: relative;
      color: #1f4a6e;
    }
    .pillar-content li i {
      color: #1e7e34;
      position: absolute;
      left: 0;
      top: 0.55rem;
      font-size: 1.2rem;
    }

    /* special badge for zero incidents */
    .safety-stats {
      display: inline-flex;
      background: #004b6e;
      color: white;
      padding: 0.5rem 1.4rem;
      border-radius: 60px;
      font-weight: 600;
      margin-top: 1rem;
      align-items: center;
      gap: 12px;
      border: 1px solid #ffb347;
    }
    .safety-stats i {
      font-size: 1.6rem;
      color: #ffc164;
    }

    /* wastewater management extra highlight */
    .env-badge {
      background: #e4f3e4;
      padding: 0.7rem 1.5rem;
      border-radius: 30px;
      color: #006633;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 0.8rem;
      border-left: 6px solid #2e7d32;
    }

    

    /* markdown style horizontal rule (---) representation as thin line */
    .section-divider {
      width: 100%;
      height: 2px;
      background: linear-gradient(90deg, transparent, #2b6c9f, transparent);
      margin: 1rem 0 2rem;
    }

    /* Responsive */
    @media (max-width: 950px) {
      .pillars-grid {
        grid-template-columns: 1fr;
      }
      .main-heading h1 {
        font-size: 2.6rem;
      }
    }
    @media (max-width: 550px) {
      .main-heading {
        flex-wrap: wrap;
      }
      .card-header {
        flex-wrap: wrap;
      }
    }
	
	
	
	 .content-box2 {
            background-color: #e6f7ff;
            border-radius: 10px;
            padding: 30px;
            display: flex;
            gap: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            overflow: hidden;
			margin-top:25px;
        }
        
        .content-box2:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }
        
        .image-container {
            flex: 0 0 40%;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .content-box2:hover .image-container img {
            transform: scale(1.05);
        }
        
        .text-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .text-content h2 {
            color: #1a5276;
            font-size: 2rem;
			font-weight:700;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #aed6f1;
			line-height:35px;
        }
        
        .text-content p {
            color: #2c3e50;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .features {
            margin: 15px 0;
        }
        
        .features li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            color: #2c3e50;
        }
        
        .features i {
            color: #3498db;
            margin-right: 10px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            margin-top: 10px;
            padding: 12px 30px;
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.3);
            align-self: flex-start;
        }
        
        .btn:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(52, 152, 219, 0.4);
        }
        
        /* Alternate layout for second box */
        .content-box2.alt {
            flex-direction: row-reverse;
        }
        
        .content-box2.alt .text-content {
            text-align: left;
        }
        
        .content-box2.alt .features li {
            justify-content: flex-end;
        }
        
        .content-box2.alt .btn {
            align-self: flex-end;
        }
        
        /* Stats section */
        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #aed6f1;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a5276;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: #7f8c8d;
            margin-top: 5px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .content-box2, .content-box2.alt {
                flex-direction: column;
            }
            
            .image-container {
                flex: 0 0 auto;
                max-height: 300px;
            }
            
            .text-content, .content-box2.alt .text-content {
                text-align: left;
            }
            
            .features li, .content-box2.alt .features li {
                justify-content: flex-start;
            }
            
            .btn, .content-box2.alt .btn {
                align-self: flex-start;
            }
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }
            
            .header p {
                font-size: 1.1rem;
            }
            
            .content-box2 {
                padding: 25px;
            }
            
            .text-content h2 {
                font-size: 1.6rem;
            }
            
            .stats {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .content-box2 {
                padding: 20px;
            }
            
            .header h1 {
                font-size: 1.8rem;
            }
            
            .text-content h2 {
                font-size: 1.4rem;
            }
        }


 /* section title "BOARD & KEY MANAGEMENT" */
        .board-title {
            font-size: 2rem;
            font-weight: 700;
            color: #003559;
            margin: 2.5rem 0 2rem 0;
            padding-bottom: 0.8rem;
            border-bottom: 5px solid #ffb84d;
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* grid – perfect for 6 profiles */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.2rem;
            margin-top: 1.8rem;
        }

        /* profile card */
        .profile-card {
            background: #f9fcff;
            border-radius: 2.5rem 1.2rem 2.5rem 1.2rem;
            padding: 2rem 1.8rem 2.2rem;
            box-shadow: 0 15px 25px -10px rgba(0,45,75,0.15);
            transition: transform 0.2s ease, box-shadow 0.2s;
            border: 1px solid #dae9f5;
            display: flex;
            flex-direction: column;
            position: relative;
        }
        .profile-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -14px #003357b3;
            border-color: #ffb34780;
        }

        /* dummy profile image (using fontawesome & circle) */
        .profile-img {
            width: 100px;
            height: 100px;
            background: linear-gradient(145deg, #1f6996, #154a6e);
            border-radius: 40% 60% 40% 60% / 50% 40% 60% 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.4rem;
            border: 4px solid #ffb347;
            box-shadow: 0 8px 0 #0e2e40;
            color: white;
            font-size: 3.2rem;
            transition: all 0.25s;
        }
        .profile-card:hover .profile-img {
            border-radius: 50% 30% 50% 30%;
            background: #226f9a;
            border-color: #ffc107;
        }

        /* name and designation */
        .profile-name {
            font-size: 1.9rem;
            font-weight: 700;
            line-height: 1.2;
            color: #00263b;
            margin-bottom: 0.3rem;
        }
        .profile-designation {
            font-size: 1.3rem;
            font-weight: 600;
            color: #00577a;
            margin-bottom: 1.2rem;
            border-left: 6px solid #ffb347;
            padding-left: 1rem;
            background: #e3f0fa;
            border-radius: 0 20px 20px 0;
            width: fit-content;
            padding: 0.4rem 1.2rem 0.4rem 1rem;
        }

        /* contact / phone (only for first person) */
        .profile-phone {
            background: #f0f8ff;
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            color: #00487c;
            font-weight: 600;
            margin: 0.8rem 0 1rem;
            border: 1px dashed #0077be;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
        }

        .profile-description {
            color: #25475f;
            font-size: 1rem;
            margin: 0.8rem 0 0;
            line-height: 1.5;
            border-top: 2px dotted #b0cfeb;
            padding-top: 1rem;
        }

        /* specific style for manager roles etc */
        .small-note {
            font-size: 0.95rem;
            color: #405e79;
        }

        /* horizontal rule emulation (---) */
        .hr-light {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #2b8abf, transparent);
            margin: 1rem 0;
        }

        /* dummy image variations (different icons for each profile) – we set them via nth-child if needed, but we'll use inline FA icons inside img div */
        /* we will manually assign different icons for visual variety */
        .profile-card:nth-child(1) .profile-img i { font-size: 4rem; } 
        .profile-card:nth-child(2) .profile-img i { font-size: 4rem; } 
        .profile-card:nth-child(3) .profile-img i { font-size: 4rem; } 
        .profile-card:nth-child(4) .profile-img i { font-size: 4rem; } 
        .profile-card:nth-child(5) .profile-img i { font-size: 4rem; } 
        .profile-card:nth-child(6) .profile-img i { font-size: 4rem; } 

        /* responsive */
        @media (max-width: 700px) {
            .leadership-container {
                padding: 1.8rem 1.2rem;
            }
            .main-heading h1 {
                font-size: 2.4rem;
            }
            .board-title {
                font-size: 1.8rem;
            }
        }
		
		/* team grid – 12 names in a neat responsive layout */
        .team-grid2 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
            gap: 1.2rem;
            margin: 2.5rem 0 2rem;
        }

        .crew-member {
			
            background: #ffffff;
            border-radius: 30px 8px 30px 8px;
            padding: 1.3rem 0.8rem 1rem 1.5rem;
            border: 2px solid #d9ecff;
            box-shadow: 0 8px 12px -8px #002d4c40;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: 0.15s ease;
            font-size: 1.25rem;
            font-weight: 500;
            color: #003459;
        }

        .crew-member:hover {
            
            border-color: #ffb347;
            transform: scale(1.02) translateY(-4px);
            box-shadow: 0 18px 20px -12px #fc7f1e80;
        }
		
		.mt-44 {
  margin-top: 2rem;
}

        .crew-member i {
            font-size: 2rem;
            color: #ff812d;
            width: 2rem;
            text-align: center;
            filter: drop-shadow(2px 2px 0 #ffcd94);
        }

        /* special styling for Mr. prefix (uniform) */
        .crew-member .name {
            flex: 1;
            font-weight: 550;
        }
		
		  /* responsive */
        @media (max-width: 750px) {
            .crew-card {
                padding: 2rem 1.2rem;
            }
            .crew-header h1 {
                font-size: 2.5rem;
            }
            .crew-header h1 span {
                font-size: 1.3rem;
            }
            .execution-skills p {
                font-size: 1.3rem;
            }
        }
		
		.heading6 {
  font-size: 20px;
  line-height: 3.25rem;
  font-weight: 700;
  text-transform: capitalize;
}


		/* three-column grid for Quality, Safety, Environmental */
        .assurance-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin: 2.5rem 0 3rem;
        }

        .pillar-card {
            background: #f9fcff;
            border-radius: 2.5rem 1.2rem 2.5rem 1.2rem;
            padding: 2rem 1.8rem 2.2rem;
            border: 2px solid #d6ecff;
            box-shadow: 0 20px 30px -10px #01365440;
            transition: transform 0.2s;
        }

        .pillar-card:hover {
            transform: translateY(-8px);
            border-color: #ffb85b;
            box-shadow: 0 25px 35px -12px #fc7f1e80;
        }

        .pillar-icon {
            font-size: 3.1rem;
            color: #ff8124;
            margin-bottom: 1rem;
            background: #fff1e0;
            width: 80px;
            height: 80px;
            border-radius: 30px 8px 30px 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #ffb85b;
        }

        .pillar-title {
            font-size: 2rem;
            font-weight: 700;
            color: #003459;
            margin-bottom: 1.5rem;
            border-bottom: 4px solid #ffb751;
            padding-bottom: 0.6rem;
            display: inline-block;
			line-height:38px;
        }

        .pillar-list {
            list-style: none;
        }

        .pillar-list li {
            font-size: 1.1rem;
            padding: 0.5rem 0 0.2rem 2rem;
            position: relative;
            color: #1a4d6e;
        }

        .pillar-list li i {
            color: #ff8f3f;
            position: absolute;
            left: 0;
            top: 0.7rem;
            font-size: 1.3rem;
        }
		
		/* responsive */
        @media (max-width: 950px) {
            .assurance-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            .service-header h1 {
                font-size: 3rem;
            }
            .service-header h1 span {
                font-size: 1.5rem;
            }
            .assurance-main-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 600px) {
            .services-container {
                padding: 1.8rem 1.2rem;
            }
        }

        .mark-check {
            color: #248f4c;
        }

        .company-sig {
            margin-top: 2rem;
            text-align: right;
            font-style: italic;
            border-top: 2px dashed #ffb85b;
            padding-top: 1.5rem;
            color: #1f618d;
        }
		
		
		  /* lead paragraph */
        .infra-lead {
            background: #e2f0fd;
            padding: 2rem 2.8rem;
            border-radius: 40px 10px 40px 10px;
            margin: 2rem 0 2.5rem;
            border-left: 14px solid #ff9533;
            font-size: 1.26rem;
            color: #003153;
			line-height:28px;
            box-shadow: inset 0 1px 10px #bfdbff;
        }

        /* section style */
        .section-title {
            font-size: 2.4rem;
            font-weight: 700;
            color: #003153;
            margin: 3rem 0 0.8rem 0;
            border-left: 18px solid #ff8f42;
            padding-left: 1.5rem;
            background: #ecf5fc;
            border-radius: 0 60px 60px 0;
            display: inline-block;
            padding: 0.7rem 3rem 1.0rem 2rem;
        }

        .section-subtitle {
            font-size: 2rem;
            font-weight: 600;
            color: #004b7a;
            margin: 2rem 0 1rem 0;
            border-bottom: 4px solid #ffb347;
            padding-bottom: 0.5rem;
            display: inline-block;
        }

        /* list style with ticks */
        .check-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }
        .check-list li {
            font-size: 1.15rem;
            padding: 0.5rem 0 0.3rem 2.2rem;
            position: relative;
            color: #1f4d70;
        }
        .check-list li i {
            color: #ff8124;
            position: absolute;
            left: 0;
            top: 0.7rem;
            font-size: 1.4rem;
        }

        /* grid for equipment categories */
        .equip-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(298px, 1fr));
            gap: 2rem;
            margin: 2rem 0 2rem;
        }

        .equip-card {
            background: #f9fdff;
            border-radius: 2.5rem 1rem 2.5rem 1rem;
            padding: 1.8rem 1.8rem 2rem;
            border: 2px solid #d0e7fa;
            box-shadow: 0 15px 25px -12px #00315370;
            transition: all 0.2s;
        }
        .equip-card:hover {
            transform: translateY(-7px);
            border-color: #ffb347;
            box-shadow: 0 25px 30px -12px #fc7f1e;
        }

        .equip-card i {
            font-size: 2.8rem;
            color: #ff8324;
            margin-bottom: 0.5rem;
            background: #fff1e2;
            width: 70px;
            height: 70px;
            border-radius: 30px 6px 30px 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .equip-card h3 {
            font-size: 1.9rem;
            font-weight: 700;
			line-height:36px;
            color: #003459;
            margin: 0.8rem 0 0.8rem;
        }

        .equip-card p {
            color: #1f4b6e;
            font-size: 1.05rem;
			text-align:justify;
			
        }

        /* small badge style */
        .monitor-badge {
            background: #004b7a;
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 0.5rem 0 0;
            font-weight: 500;
        }

        /* safety equipment grid minimal */
        .safety-mini-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem 2rem;
            margin: 2rem 0 1rem;
        }
        .safety-item {
            background: #ecf7ff;
            border-radius: 40px;
            padding: 0.6rem 1.6rem;
            font-size: 1.15rem;
            font-weight: 500;
            color: #004b7c;
            border-left: 6px solid #ffa23b;
        }
        .safety-item i {
            margin-right: 8px;
            color: #ff6a00;
        }

        /* footer */
        .footer-closing {
            margin-top: 3.5rem;
            background: #003459;
            color: white;
            padding: 1.6rem 2.5rem;
            border-radius: 60px 12px 60px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-left: 10px solid #ffb347;
        }

        @media (max-width: 800px) {
            .infra-card {
                padding: 1.8rem 1.2rem;
            }
            .infra-header h1 {
                font-size: 2.8rem;
            }
            .infra-header h1 span {
                font-size: 1.5rem;
            }
        }
		
		  /* quality policy section */
        .quality-subsection {
            margin-top: 3.5rem;
        }

        .policy-lead {
            font-size: 1.3rem;
            background: #f1f9ff;
            padding: 1.5rem 2.5rem;
            border-radius: 40px 10px 40px 10px;
            margin: 1.8rem 0 2.5rem;
            border-left: 12px solid #ff9f40;
            font-weight: 500;
			line-height:34px;
        }
		

 /* policy grid (✔ items) */
        .policy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(297px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0 2rem;
        }

        .policy-item {
            background: #f9f9ff;
            border-radius: 2rem 0.8rem 2rem 0.8rem;
            padding: 1.6rem 1.6rem 1.6rem 2rem;
            border: 2px solid #cde4fc;
            box-shadow: 0 12px 20px -12px #00436e6b;
            transition: 0.2s;
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
        }

        .policy-item:hover {
            border-color: #ffb04b;
            background: #fffcf2;
        }

        .policy-item i {
            font-size: 2.2rem;
            color: #ff8124;
            min-width: 2.5rem;
            text-align: center;
        }

        .policy-item .policy-text h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: #003459;
            margin-bottom: 0.3rem;
			line-height:34px;
        }

        .policy-item .policy-text p {
            color: #215775;
            font-size: 1.05rem;
			text-align:justify;
        }

        /* extra validation line */
        .quality-footer {
            margin-top: 3rem;
            background: #003153;
            color: white;
            padding: 1.8rem 2.8rem;
            border-radius: 60px 12px 60px 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            border-left: 12px solid #ffb347;
            font-size: 1.25rem;
        }

        .quality-footer i {
            color: #ffb347;
            font-size: 2.5rem;
        }

        /* horizontal rule style */
        .hr-light {
            height: 4px;
            background: linear-gradient(90deg, transparent, #ffae42, transparent);
            margin: 2.5rem 0;
        }

        @media (max-width: 800px) {
            .values-header h1 {
                font-size: 2.8rem;
            }
            .values-header h1 span {
                font-size: 1.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
        }
		
		
	 /* horizontal scroll container — the “horizontal boxes” effect */
        .process-scroll {
           display: grid;
		grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
		gap: 2rem;
		margin: 2.5rem 0 2rem;
        }

        .process-scroll::-webkit-scrollbar {
            height: 10px;
        }

        .process-scroll::-webkit-scrollbar-track {
            background: #d9e6f2;
            border-radius: 20px;
        }

        .process-scroll::-webkit-scrollbar-thumb {
            background: #118ab2;
            border-radius: 20px;
            border: 2px solid #d9e6f2;
        }

        /* each card = horizontal box */
        .process-card {
            flex: 0 0 340px;            /* fixed width – horizontal box style */
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(4px);
            background: linear-gradient(145deg, #ffffff 0%, #f8fcff 100%);
            border-radius: 32px;
            padding: 1.8rem 1.5rem 1.8rem 1.5rem;
            box-shadow: 0 25px 40px -12px rgba(0, 35, 60, 0.35),
                        0 0 0 1px rgba(255,255,255,0.7) inset;
            border: 1px solid rgba(255,255,255,0.6);
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .process-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 32px 55px -12px #02304733, 0 0 0 2px #c1e1f7 inset;
        }

        /* numbered badge (big) */
        .card-number {
            font-size: 4rem;
            font-weight: 800;
            line-height: 1;
            color: #c7e2f0;
            position: absolute;
            top: -0.1rem;
            right: 0.6rem;
            opacity: 0.35;
            user-select: none;
            z-index: 1;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        /* image placeholder (suitable illustration) */
        .card-img {
            width: 100%;
            height: 140px;
            border-radius: 22px;
            background: #cbe4f5;
            margin-bottom: 1.2rem;
            position: relative;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            box-shadow: 0 10px 15px -8px rgba(0,45,70,0.2);
            border: 1px solid white;
        }

        .card-img i {
            font-size: 4.4rem;
            color: #1b5e7a;
            filter: drop-shadow(2px 4px 4px rgba(0,0,0,0.1));
        }

        /* fallback image style via background gradient + icon – but we use icon + color, very illustrative */
        .card-img.icon-bg {
            background: linear-gradient(130deg, #d1e7fc, #b3d8f0);
        }

        .card-title {
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.3;
            color: #0a2a44;
            margin-bottom: 1rem;
            padding-right: 1rem;
            z-index: 5;
            position: relative;
        }

        .card-bullets {
            list-style: none;
            margin: 0.5rem 0 0.8rem 0;
            z-index: 5;
            position: relative;
        }

        .card-bullets li {
            font-size: 1.05rem;
            padding: 0.4rem 0 0.2rem 1.7rem;
            position: relative;
            color: #1f4662;
            font-weight: 500;
            line-height: 1.4;
            border-bottom: 1px dashed rgba(0,80,120,0.1);
        }

        .card-bullets li:last-child {
            border-bottom: none;
        }

        .card-bullets li i {
            position: absolute;
            left: 0.1rem;
            top: 0.5rem;
            font-size: 1rem;
            color: #118ab2;
            width: 1.4rem;
            text-align: center;
        }

        .extra-note {
            font-size: 0.9rem;
            background: #e3f0fa;
            padding: 0.7rem 1rem;
            border-radius: 20px;
            margin-top: 1rem;
            color: #03506f;
            font-weight: 500;
            border: 1px solid #bbe0fa;
            z-index: 5;
            position: relative;
        }

        /* company footer / trust note */
       

        /* small screen adaptation: keep horizontal boxes */
        @media (max-width: 700px) {
            .methodology-header h1 {
                font-size: 1.9rem;
            }
            .subhead {
                max-width: 100%;
                font-size: 1rem;
            }
            .process-card {
                flex: 0 0 300px;
                padding: 1.5rem;
            }
			
		
        }

        /* coloured images variations for each step – using distinct icons/colors */
        .card-img.step1 { background: #c4def7; }
        .card-img.step2 { background: #cae0d7; }
        .card-img.step3 { background: #f4d9c7; }
        .card-img.step4 { background: #f9ccd0; }
        .card-img.step5 { background: #d4e1d3; }
        .card-img.step6 { background: #f5e3c4; }
        .card-img.step7 { background: #cbddee; }
        .card-img.step8 { background: #d9d0e6; }
		
		
/* CSS Grid: 5 columns, gap 1.5rem */
    .logo-grid {
      display: grid;
      grid-template-columns: repeat(5, 320px);
      gap: 1rem;                /* space between cells */
      justify-content: center;    /* centers grid horizontally */
      margin: 0 auto;
    }
	
	.logo-grid img{
	
	max-width: 95%;
  max-height: 90%;
  width: auto;
  height: auto;
	}

    /* each card exactly 320x86 */
    .logo-card {
      width: 220px;
      height: 86px;
      background: #ffffff;
      border-radius: 18px;
      box-shadow: 0 8px 18px -6px rgba(0, 30, 50, 0.2), 0 2px 4px 0 rgba(0,0,0,0.02), inset 0 1px 0 rgba(255,255,255,0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      border: 1px solid rgba(190, 210, 235, 0.5);
      padding: 0.25rem;
    }

    .logo-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 30px -10px rgba(0, 55, 100, 0.3);
      border-color: #9bb9dc;
    }

    /* SVG logo placeholder – vector, fits perfectly inside 320x86 */
    .logo-svg {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    svg {
      max-width: 92%;            /* never exceed container, with subtle breathing */
      max-height: 80%;           /* balanced vertical spacing */
      width: auto;
      height: auto;
      filter: drop-shadow(0 2px 3px rgba(0,0,0,0.05));
    }

    /* optional brand label (minimal) */
    .logo-label {
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      color: #30547b;
      opacity: 0.7;
      margin-top: 2px;
      text-align: center;
    }

    /* RESPONSIVE BEHAVIOR – keep 320px boxes, reduce column count */
    @media screen and (max-width: 1780px) {
      .logo-grid {
        grid-template-columns: repeat(4, 320px);
      }
    }
    @media screen and (max-width: 1440px) {
      .logo-grid {
        grid-template-columns: repeat(5, 220px);
      }
    }
    @media screen and (max-width: 1080px) {
      .logo-grid {
        grid-template-columns: repeat(2, 320px);
      }
    }
    @media screen and (max-width: 720px) {
      .logo-grid {
        grid-template-columns: 275px; /* single column on narrow screens */
      }
      body { padding: 1rem 0.5rem; }
      .grid-wrapper { padding: 1.5rem 0.8rem; }
	  
	  .logo-card {
  width: 275px;
  height: 86px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 8px 18px -6px rgba(0, 30, 50, 0.2), 0 2px 4px 0 rgba(0,0,0,0.02), inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  border: 1px solid rgba(190, 210, 235, 0.5);
  padding: 0.25rem;
}
	  
    }

    /* header and footer specs */
    .spec-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .spec-header h2 {
      font-weight: 500;
      font-size: 1.8rem;
      color: #162b42;
      letter-spacing: -0.02em;
      display: inline-block;
      background: rgba(255,255,255,0.5);
      backdrop-filter: blur(4px);
      padding: 0.3rem 2.2rem;
      border-radius: 60px;
      box-shadow: 0 4px 12px rgba(0,35,70,0.1);
      border: 1px solid rgba(255,255,255,0.7);
    }
    .spec-header p {
      font-size: 1.1rem;
      color: #1f3a5f;
      margin-top: 0.75rem;
      font-weight: 400;
    }
    .spec-header strong {
      background: #1f4a7a;
      color: white;
      padding: 0.2rem 1rem;
      border-radius: 40px;
      font-weight: 500;
      margin: 0 0.2rem;
    }

   
	