<!-- start Simple Custom CSS and JS -->
<style type="text/css">
:root {
    --irm-container: 1200px;
    --irm-gutter: 20px;
    --container: 1200px;
    --page-pad: 16px;
    --blue: #109edb;
    --body: #0ea7d8;
    --ink: #fff;
    --ink-dark: #111;
    --ink-mid: #333;
    --accent: #f7a22b;
    --accent-2: #10a7df;
    --line: #10a7df;
}

.irm-hero {
    --accent: #ffb347;
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background:
        linear-gradient(0deg, rgba(0, 140, 200, .65) 0%, rgba(0, 140, 200, .35) 40%, rgba(0, 0, 0, .3) 100%),
        var(--hero-img, url('hero.jpg')) center/cover no-repeat;
}

.irm-hero .content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.irm-hero h1 {
    color: var(--accent);
    margin: 0;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: .02em;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.irm-hero h1 span {
    --s: 1px;
    --c: #fff;
    color: var(--blue);
    -webkit-text-stroke: 0;
    text-shadow:
        var(--s) 0 0 var(--c), calc(-1*var(--s)) 0 0 var(--c),
        0 var(--s) 0 var(--c), 0 calc(-1*var(--s)) 0 var(--c),
        var(--s) var(--s) 0 var(--c), calc(-1*var(--s)) calc(-1*var(--s)) 0 var(--c),
        var(--s) calc(-1*var(--s)) 0 var(--c), calc(-1*var(--s)) var(--s) 0 var(--c);
}

.irm-hero p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-top: .5rem;
    opacity: .9;
}

.irm-container {
    max-width: var(--irm-container);
    margin: 0 auto;
    padding: 60px var(--irm-gutter);
}

.irm-row {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
}

.irm-row.reverse {
    flex-direction: row-reverse;
}

.irm-col {
    flex: 1 1 50%;
    min-width: 0;
}

.irm-col.image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.irm-col.text h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 700;
}

.irm-col.text p {
    margin-bottom: .8rem;
    line-height: 1.7;
    color: #333;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.card {
    background: #f7f9fc;
    border: 1px solid #e0e6ef;
    padding: 15px 20px;
    border-radius: 10px;
    flex: 1 1 150px;
    text-align: center;
    font-weight: 600;
    transition: all .3s ease;
    cursor: pointer;
}

.card:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
}

.irm-projects {
    max-width: var(--irm-container);
    margin-inline: auto;
    padding-inline: var(--irm-gutter);
}

.irm-projects h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.irm-projects .grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(340px, 1fr));
    gap: 28px;
}

.irm-projects .box {
    background: #fff;
    border: 1px solid #e0e6ef;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.irm-projects .box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
}

.irm-projects .box h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #0d6efd;
}

.irm-projects .box ul {
    margin: 0;
    padding-left: 18px;
    line-height: 1.7;
    color: #444;
}

@media (max-width: 1100px) {
    .irm-projects .grid {
        grid-template-columns: repeat(2, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 900px) {

    .irm-row {
        flex-direction: column;
        gap: 20px;
    }

    .irm-row .irm-col.image {
        order: -1;
    }

    .cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .card {
        flex: none;
    }

    .irm-projects {
        padding-inline: 16px;
    }

    .irm-projects .grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .irm-hero {
        height: 280px;
        padding: 0 15px;
    }
}

.irm-org {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.irm-org__title {
    text-align: center;
    margin: 0 0 22px;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
    font-weight: 700;
}

.org-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 24px;
}

.org-card {
    background: #fff;
    border: 1px solid #e6eef6;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.org-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .09);
    border-color: #dbe6f2;
}

.org-media {
    aspect-ratio: 16/9;
    background: #f3f7fb;
}

.org-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.org-body {
    padding: 16px 16px 18px;
}

.org-body h3 {
    margin: 2px 0 6px;
    font-size: 1.05rem;
    font-weight: 700;
}

.org-body p {
    margin: 0 0 12px;
    color: #4d5b6a;
    line-height: 1.6;
}

.org-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn {
    --c: #0d6efd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid var(--c);
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}

.btn:active {
    transform: scale(.98);
}

.btn-primary {
    background: var(--c);
    color: #fff;
}

.btn-primary:hover {
    background: #0b5ed7;
    border-color: #0b5ed7;
}

.btn-outline {
    background: #fff;
    color: var(--c);
}

.btn-outline:hover {
    background: #eef5ff;
}

.org-modal[hidden] {
    display: none;
}

.org-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#orgModalImg {
    max-width: min(1200px, 96vw);
    max-height: 92vh;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4);
}

.org-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    color: #111;
    border: 0;
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

@media (max-width: 900px) {
    .org-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

.irm-org--v2{
  --org2-accent: #5AB3FF;
  --org2-card-bg: #fff;
  --org2-text-strong: #111;
  --org2-text-soft: #666;
  --org2-text-body: #222;
  --org2-radius: 28px;
  --org2-shadow: 0 10px 30px rgba(0,0,0,.12);
  --org2-avatar: clamp(160px, 24vw, 210px);
}

.irm-org--v2 .org2-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(280px,1fr));
  gap:24px;
  max-width:1200px;
  margin:0 auto;
}

.irm-org--v2 .org2-card{
  position:relative;
  background:var(--org2-card-bg);
  border:1px solid #e6eef6;
  border-radius:var(--org2-radius);
  box-shadow:var(--org2-shadow);
  overflow:visible;
  padding:24px;
  padding-top: calc(var(--org2-avatar) * 0.80); 
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.irm-org--v2 .org2-card:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 36px rgba(0,0,0,.16);
  border-color:#dbe6f2;
}

.irm-org--v2 .org2-media.org2-avatar{
  position:absolute;
  left:50%;
  top:0;
  transform:translate(-50%, -32%); 
  width:var(--org2-avatar);
  height:var(--org2-avatar);
  z-index:2;
}
.irm-org--v2 .org2-media.org2-avatar::before{ content:none; } 

.irm-org--v2 .org2-view{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:999px;
  background:#ddd;

  box-shadow:
    0 0 0 8px var(--org2-accent),
    0 12px 28px rgba(0,0,0,.22);
}

.irm-org--v2 .org2-body{
  max-width:720px;
  margin:0 auto;
  color:var(--org2-text-body);
}
.irm-org--v2 .org2-body h3{
  margin:0 0 6px;
  font-weight:800;
  font-size:clamp(1.05rem,1.8vw,1.35rem);
  color:var(--org2-text-strong);
}
.irm-org--v2 .org2-body .role{
  margin:0 0 12px;
  color:var(--org2-text-soft);
  font-weight:600;
}
.irm-org--v2 .org2-body p{
  margin:0 0 12px;
  line-height:1.65;
}

.irm-org--v2 .irm-org__title{
  text-align:center;
  margin-bottom: clamp(40px, 7vw, 96px);
}

@media (max-width: 900px){
  .irm-org--v2{ --org2-avatar: clamp(120px, 32vw, 150px); }

  .irm-org--v2 .org2-grid{
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .irm-org--v2 .org2-card{
    padding-top: calc(var(--org2-avatar) * 1.05); 
  }
  .irm-org--v2 .org2-media.org2-avatar{
    transform: translate(-50%, -36%); 
  }

  .irm-org--v2 .org2-card + .org2-card{
    margin-top: calc(var(--org2-avatar) * 0.32);
  }
}

@media (max-width: 900px){

  .irm-org__title{
    margin-top: 12px;           
    margin-bottom: 88px !important;  
  }

  .irm-org--v2 .irm-org__title{
    margin-bottom: 88px !important;
  }
}

.mining-section {
    padding: 80px 10%;
    background: #fff;
}

.mining-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* ===== LEFT CONTENT ===== */
.mining-section__content {
    flex: 1 1 500px;
}

.mining-section__title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    margin-bottom: 20px;
}



.mining-section__text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* ===== BUTTON ===== */
.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 2px solid #e67e22;
    border-radius: 50px;
    color: #e67e22;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #e67e22;
    color: #fff;
}

/* ===== IMAGE (kept unchanged) ===== */
.about-irm__photo {
    flex: 1 1 400px;
    text-align: center;
}

.about-irm__photo img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-irm__photo img:hover {
    transform: scale(1.03);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mining-section__inner {
        flex-direction: column;
        text-align: center;
    }

    .mining-section__title {
        font-size: 2.2rem;
    }

    .mining-section__text {
        font-size: 1rem;
    }

    .btn-outline {
        padding: 10px 24px;
    }
}</style>
<!-- end Simple Custom CSS and JS -->
