@charset "utf-8";
  :root {
    --navy: #2d2460;
    --steel: #312f71;
    --accent: #ff0000;
    --gold: #E8B84B;
    --light: #F4F1EB;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --muted: #6B7280;
    --border: #DDD5C5;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
  }
.logo-icon .b,
.logo-icon .s {
    color: #2d2460;       /* blue */
}

.logo-icon .i {
    color: #ed1c24;       /* red */
}
.fw-bold {
    font-weight: 700 !important;
}
  /* ─── COVER ─────────────────────────────────────── */
  .cover {
    background: var(--navy);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
  }
  .cover .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.60); /* adjust darkness */
}

  .cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 40px,
        rgba(200,146,42,0.04) 40px,
        rgba(200,146,42,0.04) 41px
      );
  }

  .cover::after {
    content: '';
    position: absolute;
    bottom: -100px; right: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,146,42,0.12) 0%, transparent 70%);
  }

  .logo-block {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
  }

  .logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(200,146,42,0.4);
    border-radius: 4px;
    padding: 18px 32px;
  }

  .logo-icon {
    font-size: 48px;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -2px;
  }

  .logo-text {
    text-align: left;
  }

  .logo-text .brand {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .logo-text .sub {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .cover h1 {
    position: relative; z-index: 2;
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    max-width: 800px;
    margin-bottom: 24px;
  }

  .cover h1 em {
    font-style: normal;
    color: var(--gold);
  }

  .cover .tagline {
    position: relative; z-index: 2;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 60px;
  }

  .cover-stats {
    position: relative; z-index: 2;
    display: flex;
    gap: 0;
    
    border-radius: 4px;
    overflow: hidden;
  }

  .stat-item {
    padding: 24px 36px;
    text-align: center;
    border-right: 1px solid rgba(200,146,42,0.2);
  }
  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    display: block;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
  }

  /* ─── SECTION LAYOUT ─────────────────────────────── */
  section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 12px;
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 32px;
  }

  h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
  }

  p {
    font-size: 16px;
    color: #444;
    margin-bottom: 16px;
    max-width: 760px;
  }

  /* ─── DIVIDER ─────────────────────────────────────── */
  .divider {
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 0 40px;
    opacity: 0.4;
  }

  /* ─── ABOUT ──────────────────────────────────────── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .chairman-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 60px;
    align-items: start;
  }

  .about-highlight {
    background: var(--navy);
    color: var(--white);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .about-highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
  }

  .about-highlight p {
    color: rgba(255,255,255,0.75);
    max-width: none;
  }

  .about-highlight strong {
    color: var(--gold);
  }

  .key-facts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
  }

  .fact-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .fact-row:last-child { border-bottom: none; }

  .fact-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .fact-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
  }

  /* ─── VMV ────────────────────────────────────────── */
  .vmv-bg {
    background: var(--navy);
    padding: 0;
    margin: 0;
  }

  .vmv-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
  }

  .vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 40px;
    background: rgba(200,146,42,0.2);
  }

  .vmv-card {
    background: var(--navy);
    padding: 40px 32px;
    position: relative;
  }

  .vmv-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
  }

  .vmv-card:nth-child(1)::before { background: var(--accent); }
  .vmv-card:nth-child(2)::before { background: var(--gold); }
  .vmv-card:nth-child(3)::before { background: #7EC8A4; }

  .vmv-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .vmv-card h3 {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
  }

  .vmv-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    max-width: none;
    margin: 0;
  }

  .vmv-label {
    color: rgba(255,255,255,0.45);
  }

  /* ─── SERVICES ───────────────────────────────────── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px 28px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
  .service-card:hover::after { transform: scaleX(1); }

  .service-num {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    color: rgba(200,146,42,0.82);
    line-height: 1;
    margin-bottom: 16px;
  }

  .service-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .service-card p {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    max-width: none;
  }

  /* ─── PROJECTS ───────────────────────────────────── */
  .projects-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }

  .project-row {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 24px;
    align-items: start;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px 32px;
    border-radius: 4px;
  }

  .project-value {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
  }

  .project-value span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .project-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 6px;
  }

  .project-desc {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    max-width: none;
  }

  .project-badge {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .badge-complete { background: #DCF5E8; color: #1A7A44; }
  .badge-progress { background: #FEF3C7; color: #92400E; }

  /* ─── ACCREDITATIONS ─────────────────────────────── */
  .accred-bg {
    background: #F9F6F0;
    margin: 0;
    padding: 0;
  }

  .accred-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
  }

  .accred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .accred-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 28px 24px;
    border-radius: 4px;
    text-align: center;
  }

  .accred-card .cert-id {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .accred-card .cert-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
  }

  .accred-card .cert-detail {
    font-size: 12px;
    color: #aaa;
    margin: 0;
  }

  /* ─── CLIENTS ────────────────────────────────────── */
  .clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
  }

  .client-chip {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    text-align: center;
    line-height: 1.4;
  }

  /* ─── ACHIEVEMENTS ───────────────────────────────── */
  .awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .award-card {
    background: var(--navy);
    padding: 28px 24px;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .award-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
  }

  .award-year {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
  }

  .award-title {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    margin-bottom: 6px;
  }

  .award-org {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
  }

  /* ─── HSE ────────────────────────────────────────── */
  .hse-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

    align-items: start;
    margin-top: 40px;
  }

  .hse-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hse-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
  }

  .hse-list li:last-child { border-bottom: none; }

  .hse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
  }

  .training-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
  }

  .training-tag {
    background: var(--light);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
  }

  /* ─── CONTACT ────────────────────────────────────── */
  .contact-bg {
    background: var(--navy);
    margin: 0;
    padding: 0;
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .contact-inner h2 { color: var(--white); }
  .contact-inner .section-label { color: var(--gold); }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .contact-icon {
    width: 40px; height: 40px;
    background: rgba(200,146,42,0.15);
    border: 1px solid rgba(200,146,42,0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .contact-label {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 4px;
  }

  .contact-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
  }

  /* ─── FOOTER ─────────────────────────────────────── */
  .footer {
    background: #070F1A;
    text-align: center;
    padding: 32px 40px;
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
  }
.collage3clm {
	    display: grid;
	    grid-template-columns: 1fr 1fr 1fr;   /* left = portrait, right = landscapes */
	    grid-template-rows: auto auto auto;    /* two rows for landscapes */
	    gap: 10px;
	    width: 100%;
	    margin-bottom: 20px;
	}
	.collage3clm .portrait {
	    grid-row: span 2;                 /* portrait spans both rows */
	}

.collage3clm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.collage3clmimg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.Image-zoom{
			transition: transform 0.3s ease;
		}
		.Image-zoom:hover{
			transform: scale(1.05);
		}

 @media (max-width: 650px){
	.collage4clm {
	    grid-template-columns: 1fr 1fr;   /* left = portrait, right = landscapes */
	    grid-template-rows: auto auto;                /* portrait spans both rows */
	}
	 .collage3clm{
		 grid-template-columns: 1fr 1fr;   /* left = portrait, right = landscapes */
	    grid-template-rows: auto auto; 
	 }
	 
	 .collage4clm .W3 {
	    grid-column: span 2; 
	}
	
}
	@keyframes fade-in {
		  from { opacity: 0; }
		  to   { opacity: 1; }
		}
		
		.fade-in-element {
		  /* Apply the animation to the element */
		  animation-name: fade-in;
		  animation-duration: 0.5s; /* Adjust duration as needed */
		  animation-timing-function: ease-out; /* Smooth transition speed */
		  animation-fill-mode: forwards; /* Keep the final state (opacity: 1) after animation ends */
			 cursor: pointer;
			transition: transform 0.3s ease;
		}

  /* ─── RESPONSIVE ─────────────────────────────────── */
  @media (max-width: 900px) {
    .about-grid, .chairman-grid, .vmv-grid, .services-grid, .hse-grid, .contact-inner { grid-template-columns: 1fr; }
    .accred-grid, .clients-grid, .awards-grid { grid-template-columns: repeat(2, 1fr); }
    .cover-stats { flex-wrap: wrap; }
    .project-row { grid-template-columns: 1fr; }
  }

  @media (max-width: 600px) {
    .accred-grid, .clients-grid, .awards-grid { grid-template-columns: 1fr; }
    section { padding: 60px 24px; }
  }

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

  .cover > * { animation: fadeUp 0.7s ease both; }
  .cover .logo-block { animation-delay: 0.1s; }
  .cover h1 { animation-delay: 0.25s; }
  .cover .tagline { animation-delay: 0.4s; }
  .cover-stats { animation-delay: 0.55s; }
	@keyframes fade-in {
		  from { opacity: 0; }
		  to   { opacity: 1; }
		}
		
		.fade-in-element {
		  /* Apply the animation to the element */
		  animation-name: fade-in;
		  animation-duration: 0.5s; /* Adjust duration as needed */
		  animation-timing-function: ease-out; /* Smooth transition speed */
		  animation-fill-mode: forwards; /* Keep the final state (opacity: 1) after animation ends */
			 cursor: pointer;
			transition: transform 0.3s ease;
		}
		.imgselect-box {
    position: relative;
    display: inline-block;
}

.imgselect-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
 .post-thumb-label {
      position: absolute;
      bottom: 8px;
      left: 8px;
      font-size: 11px;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.8);
      color: #e5e7eb;
      border: 1px solid rgba(148, 163, 184, 0.5);
    }

