.elementor-1611 .elementor-element.elementor-element-060e1b6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-c67010d */:root {
  --ephs-green: #43B02A; /* Pantone 361 C */
  --dark-text: #222;
  --light-bg: #f7f7f7;
  --ephs-green-light: #d9f0c9; /* Very light version of Pantone 361 C */
  --section-margin: 80px; /* bottom margin for sections */
}

/* General container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 0px 0;
}

/* Hero/Header Section */
.compliance-hero {
  background: var(--ephs-green-light);
  color: var(--ephs-green);
  text-align: center;
  padding: 80px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-bottom: var(--section-margin);
}

.compliance-hero h1
{
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ephs-green);
}
.compliance-hero p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: 000;
}

/* Section Headings */
h2, h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--ephs-green);
  margin-bottom: 15px;
}

/* Paragraphs and content */
p, li {
  font-family: "Poppins", sans-serif;
  color: #000;
  line-height: 1.6;
}

/* Checklist - only ✔ tick, no default bullets */
.checklist, .two-col, .hse-policy ul {
  list-style: none;
  padding-left: 0;
}

.checklist li::before,
.hse-policy ul li::before {
  content: "✔";
  color: var(--ephs-green);
  margin-right: 10px;
  font-weight: bold;
}

/* Two-column layout */
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: var(--section-margin);
}



/* Certifications Grid */
.certifications .cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: var(--section-margin);
}

.cert-item {
  text-align: center;
  background: var(--ephs-green-light);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}

.cert-item:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

.btn-download {
  display: inline-block;
  margin-top: 10px;
  background: var(--ephs-green);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: background 0.3s;
}

.btn-download:hover {
  background: #2d7e1d;
}

/* HSE Policy section */
.hse-policy {
  background: var(--light-bg);
  margin-bottom: var(--section-margin);
}

.hse-policy ul li::marker {
  color: var(--ephs-green);
}

/* QA Section */
.qa-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: var(--section-margin);
}

.qa-item {
  flex: 1 1 280px;
  background: var(--light-bg);
  padding: 20px;
  border-radius: 12px;
  border-left: 5px solid var(--ephs-green);
}


/* Fix duplicate bullets in checklist and HSE Policy */
.checklist,
.hse-policy ul {
  list-style: none !important;   /* Disable browser bullets */
  padding-left: 0 !important;    /* Remove left indentation */
  margin-left: 0 !important;
}

/* Add custom tick icon */
.checklist li,
.hse-policy ul li {
  position: relative;
  padding-left: 25px;  /* space for tick */
  margin-bottom: 10px;
}

.checklist li::before,
.hse-policy ul li::before {
  content: "✔";
  color: var(--ephs-green);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.hse-policy .two-col {
  align-items: flex-start; /* text and image align from top */
  gap: 40px;
}

.hse-policy img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  object-fit: cover;
}


/*NEW CODE */

/* HSE Section */
.hse-policy {
  background: var(--light-bg);
  margin-bottom: var(--section-margin);
  padding: 60px 20px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hse-policy .two-col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

/* Left side text */
.hse-policy .text {
  flex: 1 1 55%;
}

/* Right side image */
.hse-policy .image-box {
  flex: 1 1 40%;
  text-align: right;
}

.hse-policy .image-box img {
  width: 100%;
  max-width: 500px;
  height: 80;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  object-fit: cover;
}

/* Checklist green tick fix (for safety policy section) */
.hse-policy .checklist {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.hse-policy .checklist li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.hse-policy .checklist li::before {
  content: "✔";
  color: var(--ephs-green);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hse-policy .two-col {
    flex-direction: column;
    text-align: left;
  }
  .hse-policy .image-box {
    text-align: center;
  }
  .hse-policy .image-box img {
    max-width: 100%;
  }
}/* End custom CSS */