/* <!-- HOME PAGE FIRST SECTION ************************************************** START--> */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
:root {
  --primarySEG: #115e3c;
  --primarySEG-dark: #0a4928;
  --primarySEG-light: rgba(17, 94, 60, 0.1);
  --secondarySWD: #213332;
  --accentDE: #ff6b35;
  --accentDE-light: #ff9e6d;
  --darkW: #121212;
  --lightSE: #f8f9fa;
  --whiteSW: #ffffff;
  --glassEG: rgba(255, 255, 255, 0.08);
  --glassEG-border: rgba(255, 255, 255, 0.18);
  --transitionSWF: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --transitionSWF-smooth: all 0.5s ease;
  --shadowEW: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadowEW-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
  --shadowEW-primary: 0 10px 30px rgba(17, 94, 60, 0.2);
}

/* body {
            font-family: 'Montserrat', sans-serif;
            color: var(--secondarySWD);
            line-height: 1.7;
            background-color: var(--lightSE);
            overflow-x: hidden;
        } */

/* Main container11 */
.container11 {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 80px auto 0 auto;
  padding: 0 30px;
  flex-direction: row;
  align-items: center;
}

/* Background Shapes Animation */
@keyframes float11 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

@keyframes pulseWQ {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* Background Shapes */
.bg-shapeAF {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.1;
  filter: blur(40px);
}

.shape-1CC {
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(17, 94, 61, 0.31) 82%) 48%,
    rgba(17, 94, 61, 0.29) 82%;
  clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
  top: 0%;
  right: 0%;
  border-radius: 0px;
  /* border-radius: 0 0 50% 50% / 0 0 100% 100%; */
  /* animation: float11 25s infinite ease-in-out; */
  opacity: 1;
  filter: blur(0px);
}

.shape-2CC {
  width: 400px;
  height: 400px;
  background: linear-gradient(
    135deg,
    var(--accentDE-light),
    var(--primarySEG-light)
  );
  bottom: 10%;
  right: -150px;
  animation: float11 30s infinite ease-in-out reverse;
}

.shape-3CC {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    135deg,
    rgba(17, 94, 60, 0.3),
    rgba(255, 107, 53, 0.3)
  );
  top: 50%;
  left: 70%;
  animation: pulseWQ 15s infinite ease-in-out;
}

/* heroDSWG Section */
.heroDSWG {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(17, 94, 60, 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  padding: 100px 0;

  font-family: "Montserrat", sans-serif;
  color: var(--secondarySWD);
  line-height: 1.7;
  /* background-color: var(--lightSE); */
  /* overflow-x: hidden; */
}

.heroDSWG h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.heroDSWG::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(17, 94, 60, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 107, 53, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
  z-index: -1;
}

.heroDSWG-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.heroDSWG h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 25px;
  background: linear-gradient(
    135deg,
    var(--primarySEG),
    var(--accentDE),
    var(--primarySEG-dark)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
/* HTML: <div class="ribbon">Your text content</div> */

.heroDSWG h1::after {
  content: "";
  position: absolute;
  --r: 0.8em; /* control the ribbon shape */

  padding-inline: calc(var(--r) + 0.3em);
  line-height: 1.8;
  clip-path: polygon(
    0 0,
    100% 0,
    calc(100% - var(--r)) 50%,
    100% 100%,
    0 100%,
    var(--r) 50%
  );
  bottom: -10px;
  left: 0;
  width: 200px;
  height: 8px;
  background: linear-gradient(to right, var(--primarySEG), var(--accentDE));
  border-radius: 25%;
}

.heroDSWG p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 40px;
  max-width: 700px;
}

.heroDSWG-buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btnRG {
  padding: 16px 32px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transitionSWF);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btnRG::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
  z-index: -1;
}

.btnRG:hover::before {
  left: 100%;
}

.btnRG-primary {
  background: linear-gradient(
    135deg,
    var(--primarySEG),
    var(--primarySEG-dark)
  );
  color: var(--whiteSW);
  box-shadow: var(--shadowEW-primary);
}

.btnRG-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(17, 94, 60, 0.3);
  color: var(--whiteSW);
}

.btnRG-secondary {
  background: transparent;
  color: var(--primarySEG);
  border: 2px solid var(--primarySEG);
}

.btnRG-secondary:hover {
  background: var(--primarySEG);
  color: var(--whiteSW);
  transform: translateY(-5px);
}

.btnRG i {
  margin-left: 8px;
  transition: var(--transitionSWF);
}

.btnRG:hover i {
  transform: translateX(5px);
}

/* heroDSWG Image */
.heroDSWG-image {
  position: relative;
  margin-left: 50px;
}

.heroDSWG-image img {
  max-width: 100%;
  width: 100%;
  border: 8px double var(--primarySEG);
  border-radius: 20px;
  /* box-shadow: var(--shadowEW-lg); */
  transform: perspective(1000px) rotateY(-10deg);
  transition: var(--transitionSWF);
}

.heroDSWG-image:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

.heroDSWG-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 6px dashed var(--accentDE);
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
  transform: perspective(1000px) rotateY(10deg);
}

/* Floating Elements in heroDSWG */
.floating-elementGEsAF {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.floating-elementGE {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primarySEG-light),
    rgba(255, 107, 53, 0.1)
  );
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid var(--glassEG-border);
  transition: var(--transitionSWF);
}

.floating-elementGE:hover {
  transform: scale(1.2);
  background: linear-gradient(135deg, var(--primarySEG), var(--accentDE));
}

.floating-elementGE:hover i {
  color: var(--whiteSW);
}

.floating-elementGE i {
  font-size: 1.5rem;
  color: var(--primarySEG);
  transition: var(--transitionSWF);
}

.float-1WEG {
  top: 20%;
  right: 10%;
  animation: float11 8s infinite ease-in-out;
}

.float-2EWG {
  top: 60%;
  right: 15%;
  animation: float11 10s infinite ease-in-out reverse;
}

.float-3WEG {
  bottom: 20%;
  left: 10%;
  animation: float11 12s infinite ease-in-out;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .heroDSWG h1 {
    font-size: 3rem;
  }

  .heroDSWG-image {
    margin-left: 30px;
  }

  .heroDSWG-image img {
    max-width: 450px;
  }
}

@media (max-width: 992px) {
  .heroDSWG {
    flex-direction: column;
    text-align: center;
    padding: 80px 0;
  }

  .heroDSWG h1 {
    font-size: 2.5rem;
  }

  .heroDSWG h1::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .heroDSWG p {
    margin-left: auto;
    margin-right: auto;
  }

  .heroDSWG-buttons {
    justify-content: center;
  }

  .heroDSWG-image {
    margin: 50px auto 0;
    max-width: 500px;
  }

  .heroDSWG-image img {
    transform: none;
  }

  .heroDSWG-image:hover img {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .container11 {
    flex-direction: column-reverse;
    padding: 0 20px;
  }

  .heroDSWG h1 {
    font-size: 2.2rem;
  }

  .heroDSWG p {
    font-size: 1.1rem;
  }

  .heroDSWG-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btnRG {
    width: 100%;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .heroDSWG-image {
    max-width: 400px;
  }

  .floating-elementGE {
    width: 50px;
    height: 50px;
  }

  .floating-elementGE i {
    font-size: 1.2rem;
  }

  .shape-1CC,
  .shape-2CC,
  .shape-3CC {
    display: none;
  }
}

@media (max-width: 576px) {
  .heroDSWG {
    min-height: 90vh;
    padding: 60px 0;
  }

  .heroDSWG h1 {
    font-size: 1.8rem;
  }

  .heroDSWG-image {
    max-width: 300px;
  }

  .float-1WEG,
  .float-2EWG,
  .float-3WEG {
    display: none;
  }
}

@media (max-width: 400px) {
  .heroDSWG h1 {
    font-size: 1.6rem;
  }

  .heroDSWG p {
    font-size: 1rem;
  }
}
/* <!-- HOME PAGE FIRST SECTION ************************************************** END --> */
/* <!-- FOCUS SECTION ************************************************** START --> */
       :root {
            --primary546: #115E3C;
            --primary546-dark: #0A4928;
            --primary546-light: rgba(17, 94, 60, 0.1);
            --secondary5: #213332;
            --accent58: #FF6B35;
            --accent58-light: #FF9E6D;
            --accent58-glow: rgba(255, 107, 53, 0.4);
            --darke: #121212;
            --light5: #f8f9fa;
            --whiteger: #ffffff;
            --card-bg5: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            --glass6514: rgba(255, 255, 255, 0.15);
            --glass6514-border: rgba(255, 255, 255, 0.25);
            --transition654: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --transition654-smooth: all 0.5s ease;
            --shadow654: 0 10px 30px rgba(0, 0, 0, 0.08);
            --shadow654-lg: 0 25px 60px rgba(0, 0, 0, 0.15);
            --shadow654-primary: 0 15px 40px rgba(17, 94, 60, 0.25);
            --shadow654-accent: 0 15px 40px rgba(255, 107, 53, 0.25);
            --border-radius65847: 24px;
        }


      

        .focus-areaswef {
            background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
            position: relative;
            overflow: hidden;
            padding: 120px 0;
            font-family: 'Montserrat', sans-serif;
            color: var(--secondary5);
            line-height: 1.7;

        }
         .focus-areaswef h1, h2, h3, h4, h5,h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .containerreg {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }


        .section-title35 {
            text-align: center;
            margin-bottom: 90px;
            position: relative;
            z-index: 2;
        }

        .section-title35 h2 {
            font-size: 3.5rem;
            background: linear-gradient(135deg, var(--primary546), var(--primary546-dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            margin-bottom: 20px;
            position: relative;
            letter-spacing: -0.5px;
        }

        .section-title35 h2::after {
            content: '';
            position: absolute;
            --r: .8em;
            /* control the ribbon shapeetw */

            padding-inline: calc(var(--r) + .3em);
            line-height: 1.8;
            clip-path: polygon(0 0, 100% 0, calc(100% - var(--r)) 50%, 100% 100%, 0 100%, var(--r) 50%);
            width: 220px;
            height: 16px;
            background: linear-gradient(to right, var(--primary546), var(--accent58));
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 5px;
        }

        .title-decoration546 {
            font-size: 18rem;
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.3;
            font-weight: 900;
            z-index: -1;
            color: #115e3c;
            letter-spacing: 5px;
            text-transform: uppercase;
        }

        .section-title35 p {
            max-width: 750px;
            margin: 40px auto 0;
            font-size: 1.3rem;
            color: #666;
            font-weight: 500;
            line-height: 1.8;
        }

        /* Focus Areas - Modern Design */




        /* Background decorative elements */
        .bg-shapeetws5 {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
            overflow: hidden;
        }

        .shapeetw {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
        }

        .shapeetw-1 {
            width: 100%;
            height: 100px;
            clip-path: polygon(50% 20%, 0 0, 100% 0);
            background: var(--primary546);
            top: 0px;
            left: 0px;
            border-radius: 0%;
            opacity: 15;
            clip-path: polygon(100% 0, 0 0, 16% 18%);
        }

        .shapeetw-2 {
            width: 100%;
            height: 100px;
            background: #FF5722;
            bottom: -83px;
            border-radius: 0%;
            opacity: 15;
            clip-path: polygon(79% 0, 0 16%, 100% 16%);
        }

        .shapeetw-3 {
            width: 300px;
            height: 300px;
            background: var(--primary546);
            top: 50%;
            left: 10%;
        }

        .focus-grid65 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .focus-cardetw {
            background: var(--card-bg5);
            border-radius: var(--border-radius65847);
            padding: 45px 35px;
            text-align: center;
            box-shadow: var(--shadow654);
            transition: var(--transition654);
            position: relative;
            /* overflow: hidden; */
            z-index: 1;
            border: 1px solid rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
        }

        .focus-cardetw::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(17, 94, 60, 0.03) 0%, rgba(255, 107, 53, 0.03) 100%);
            z-index: -1;
            opacity: 0;
            transition: var(--transition654);
        }

        .focus-cardetw:hover {
            /* transform: translateY(-8px) scale(1.02); */
            box-shadow: var(--shadow654-lg), 0 0 0 1px rgba(255, 255, 255, 0.9);
        }

        .focus-cardetw:hover::before {
            opacity: 1;
        }

        .card-glow56 {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: radial-gradient(circle at center, rgb(255 107 53 / 18%) 40%, transparent 0%);
            border-radius: var(--border-radius65847);
            z-index: -2;
            opacity: 0;
            transition: var(--transition654);
        }

        .focus-cardetw:hover .card-glow56 {
            opacity: 0.6;
        }

        /* Card accent border animation */
        .focus-cardetw::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: var(--border-radius65847);
            padding: 3px;
            background: linear-gradient(135deg, var(--primary546), var(--accent58), var(--primary546-dark));
            -webkit-mask:
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
            opacity: 0;
            transition: var(--transition654);
        }

        .focus-cardetw:hover::after {
            opacity: 1;
            animation: rotate-gradient652 3s linear infinite;
        }

        @keyframes rotate-gradient652 {
            0% {
                filter: hue-rotate(0deg);
            }

            100% {
                filter: hue-rotate(360deg);
            }
        }

        .focus-icon654 {
            width: 90px;
            height: 90px;
            /* background: linear-gradient(135deg, var(--whiteger), #f8f9fa); */
            background: linear-gradient(to right, #115e3c70, #ff6b357a);
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: -90px auto 30px auto;
            position: relative;
            transition: var(--transition654);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            /* top: -40px;
            left: 30px; */
            transition: all 0.3s ease;
            z-index: 2;
        }

        .focus-cardetw:hover .focus-icon654 {
            transform: translateY(-10px) scale(1.1);
            background: linear-gradient(135deg, var(--primary546), var(--primary546-dark));
            box-shadow: var(--shadow654-primary);
        }

        .focus-icon654 i {
            font-size: 2.8rem;
            background: linear-gradient(135deg, var(--primary546), var(--primary546-dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: var(--transition654);
        }

        .focus-cardetw:hover .focus-icon654 i {
            color: var(--whiteger);
            background: none;
            -webkit-background-clip: initial;
            background-clip: initial;
        }

        .focus-cardetw h3 {
            font-size: 1.7rem;
            margin-bottom: 20px;
            color: var(--secondary5);
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .focus-cardetw h3::after {
            content: '';
            position: absolute;
            --r: .8em;
            /* control the ribbon shape */
            padding-inline: calc(var(--r) + .3em);
            line-height: 1.8;
            clip-path: polygon(0 0, 100% 0, calc(100% - var(--r)) 50%, 100% 100%, 0 100%, var(--r) 50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--primary546), var(--accent58));
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 3px;
            transition: var(--transition654);
        }

        .focus-cardetw:hover h3::after {
            width: 80px;
        }

        .focus-cardetw p {
            color: #666;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Badge for card number */
        .card-number3652 {
            position: absolute;
            top: 25px;
            right: 25px;
            width: 40px;
            height: 40px;
            background: var(--primary546-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            color: var(--primary546);
            font-size: 1.2rem;
            transition: var(--transition654);
        }

        .focus-cardetw:hover .card-number3652 {
            background: var(--primary546);
            color: var(--whiteger);
            transform: rotate(360deg) scale(1.1);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .focus-grid65 {
                grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
                gap: 35px;
            }

            .section-title35 h2 {
                font-size: 3rem;
            }

            .title-decoration546 {
                font-size: 16rem;
                top: -160px;
            }
        }

        @media (max-width: 992px) {
            .focus-grid65 {
                grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
                gap: 30px;
            }

            section {
                padding: 100px 0;
            }

            .section-title35 h2 {
                font-size: 2.8rem;
            }

            .title-decoration546 {
                font-size: 12rem;
                top: -130px;
            }

            .section-title35 p {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 768px) {
            .containerreg {
                padding: 0 20px;
            }

            section {
                padding: 80px 0;
            }

            .focus-grid65 {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .section-title35 h2 {
                font-size: 2.5rem;
            }

            .title-decoration546 {
                font-size: 8rem;
                top: -80px;
            }

            .section-title35 p {
                font-size: 1.1rem;
                margin-top: 30px;
            }
              .focus-cardetw::after {
            opacity: 1;
            animation: rotate-gradient652 3s linear infinite;
        }

            .focus-cardetw {
                padding: 35px 25px;
            }

            .focus-icon654 {
                width: 90px;
                height: 90px;
            }

            .focus-icon654 i {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {

            .section-title35 h2 {
                font-size: 2.2rem;
            }

            .section-title35 h2::after {
                height: 8px;

            }

            .title-decoration546 {
                font-size: 5.5rem;
                top: -60px;
            }

            .focus-cardetw h3 {
                font-size: 1.5rem;
            }

            .focus-cardetw p {
                font-size: 1rem;
            }
        }
/* <!-- FOCUS SECTION ************************************************** END --> */

/* <!-- HAND SECTION ************************************************** START --> */
     .hero-sectionewg {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;

             font-family: 'Poppins', sans-serif;
            /* background-color: var(--light5); */
            color: var(--secondary5);
            line-height: 1.6;
       
        }

        /* Background decorative elements */
        .bg-patternwrfq {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 10% 20%, rgb(17 94 60 / 70%) 0%, #00000063 20%), radial-gradient(circle at 90% 80%, rgb(255 107 53 / 77%) 0%, #000000c4 20%);
            z-index: 0;
        }

        .bg-leafwq {
            position: absolute;
            width: 300px;
            height: 300px;
               background-color: rgb(17 94 60 / 92%);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            top: -150px;
            right: -100px;
            z-index: 0;
            opacity: 0.7;
        }

        .bg-circlewg {
            position: absolute;
            width: 200px;
            height: 200px;
            background-color: var(--accent58-light);
            border-radius: 50%;
            bottom: -100px;
            left: -50px;
            z-index: 0;
            opacity: 0.4;
        }

        .hero-containerwq {
            max-width: 100%;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .logo-sectionwegq {
            text-align: center;
            margin-bottom: 40px;
            width: 100%;
        }

        .logo-wrapperwreg {
            display: inline-block;
            padding: 20px 40px;
            background: var(--whiteger);
            border-radius: var(--border-radius65847);
            box-shadow: var(--shadow654-lg);
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            transition: var(--transition654) !important;
        }

        .logo-wrapperwreg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary546), var(--accent58));
        }

        .logo-wrapperwreg:hover {
            transform: translateY(-5px) scale(1.02) !important;
            box-shadow: var(--shadow654-primary);
        }

        .foundation-nameewg {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 3.5rem;
            color: var(--primary546);
            letter-spacing: 2px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .foundation-subtitleeqg {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--secondary5);
            margin-top: 10px;
            letter-spacing: 1px;
        }

        .taglineegtw {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-style: italic;
            font-size: 1.8rem;
            color: var(--accent58);
            margin-top: 20px;
            position: relative;
            display: inline-block;
            padding: 10px 30px;
        }

        .taglineegtw::after {
            content: '';
            position: absolute;
                --r: .8em;
            /* control the ribbon shape */
             background: linear-gradient(to right, var(--primary546), var(--accent58));
            padding-inline: calc(var(--r) + .3em);
            line-height: 1.8;
            clip-path: polygon(0 0, 100% 0, calc(100% - var(--r)) 50%, 100% 100%, 0 100%, var(--r) 50%);
            width: 100px;
            height: 5px;
            /* background: var(--accent58); */
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
        }

        .content-sectionewg {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 60px;
            width: 100%;
        }

        .text-contentegw {
            flex: 1;
            min-width: 300px;
            max-width: 600px;
        }

        .organization-namewer {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            font-size: 2rem;
            color: var(--primary546);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        

       

        .features-gridr3h {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .feature-itemweh {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--whiteger);
            border-radius: 16px;
            box-shadow: var(--shadow654);
            transition: var(--transition654) !important;
            border-left: 8px double #355115;
        }

        .feature-itemweh:hover {
            transform: translateY(-5px) scale(1.02) !important;
            box-shadow: var(--shadow654-primary);
        }

        .feature-icone4wt {
               width: 50px;
    height: 50px;
    background: var(--primary546-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary546);
    font-size: 1.3rem;
    box-shadow: -3px 3px 5px #00000080, inset -4px 3px 5px #ff5722ba;
        }

        .feature-text4wet {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 1rem;
            color: var(--secondary5);
        }

        .image-wrapperegq {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 20px;
        }

        .responsive-imageet {
            max-width: 100%;
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
            box-shadow: var(--shadow654);
        }

      
        .cta-sectionerwg {
            margin-top: 50px;
            text-align: center;
            width: 100%;
        }

        .cta-button3t2 {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--primary546), var(--primary546-dark));
            color: var(--whiteger);
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition654);
            box-shadow: var(--shadow654-primary);
        }

        .cta-button3t2:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow654-accent);
            background: linear-gradient(135deg, var(--primary546-dark), var(--accent58));
        }

        .cta-button3t2 i {
            font-size: 1.2rem;
        }

        .logo-contentedqq {
            display: flex;
            flex-direction: row-reverse;
            justify-content: center;
            align-items: center;
            gap: 20px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .content-sectionewg {
                flex-direction: column;
                gap: 40px;
            }

            .text-contentegw {
                max-width: 100%;
            }

            .foundation-nameewg {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .features-gridr3h {
                grid-template-columns: 1fr;
            }

            .icon-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .foundation-nameewg {
                font-size: 2.2rem;
            }

            .foundation-subtitleeqg {
                font-size: 1.2rem;
            }

            .taglineegtw {
                font-size: 1.5rem;
            }

            .organization-namewer {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 768px) {
            .logo-sectionwegq {

                display: flex;
                flex-direction: column;
            }
        }

        @media (max-width: 480px) {
            .icon-grid {
                grid-template-columns: 1fr;
            }

            .logo-wrapperwreg {
                padding: 15px 25px;
            }

            .foundation-nameewg {
                font-size: 1.8rem;
            }

            .taglineegtw {
                font-size: 1.3rem;
            }
            .logo-contentedqq {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 5px;
        }
    }
/* <!-- HAND SECTION ************************************************** END --> */

/* <!-- GOVERNANCE SECTION ************************************************** START --> */
 :root {
            --primaryxcv: #115E3C;
            --primaryxcv-dark: #0A4928;
            --primaryxcv-light: rgba(17, 94, 60, 0.15);
            --secondaryde: #213332;
            --accentht: #FF6B35;
            --accentht-light: #FF9E6D;
            --lightewr: #f8f9fa;
            --whitewet: #ffffff;
            --transitiongr: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --shadowrdf: 0 25px 60px rgba(0, 0, 0, 0.1);
            --shadowrdf-hover: 0 40px 100px rgba(17, 94, 60, 0.25);
            --glow-primaryegw: 0 0 40px rgba(17, 94, 60, 0.4);
            --glow-accentetwg: 0 0 50px rgba(255, 107, 53, 0.5);
            --gradientweq: linear-gradient(135deg, var(--primaryxcv), var(--accentht));
            --gradientweq-light: linear-gradient(135deg, rgba(17, 94, 60, 0.1), rgba(255, 107, 53, 0.1));
        }
        
        
        
        #governance {
            font-family: 'Montserrat', sans-serif;
            color: var(--secondaryde);
            line-height: 1.8;
            /* background: linear-gradient(135deg, #f0f5f3 0%, #f8f9fa 50%, #f0f5f3 100%); */
            background: transparent;
            
            position: relative;
             padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

           #governance::before {
           position: absolute;
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    width: 200px;
    height: 200px;
    background: red;
    /* border-radius: 50%; */
    /* filter: blur(100px); */
    z-index: -1;
    --m: 6;
    --n: 6;
    --s: 20px;
    --g: 10px;
    aspect-ratio: var(--m) / var(--n);
    width: calc(var(--m) * (var(--s) * (1 + 1 / sqrt(8)) + var(--g)));
    background: conic-gradient(at calc(var(--s) / sqrt(8)) var(--s), #009688d1 25%, #0008 0 62.5%, #0004 0) 0 0 / calc(100% / var(--m)) calc(100% / var(--n)) #FA6900;
    mask: conic-gradient(from -90deg at right var(--g) bottom var(--g), #000 90deg, #0000 0) intersect, linear-gradient(to bottom right, #0000 calc(var(--s) / 4), #000 0 calc(100% - calc(var(--s) / 4) - sqrt(2) * var(--g)), #0000 0);
    mask-size: calc(100% / var(--m)) calc(100% / var(--n));
    opacity: 0.18;
        }
        
        /* body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(17, 94, 60, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.08) 0%, transparent 50%);
            z-index: -1;
        } */
        
       #governance h1, h2, h3, h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }
        
        .containererwg {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }
        
       
        
        .section-titleewfq {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-titleewfq h2 {
            font-size: 4.5rem;
            background: linear-gradient(135deg, var(--primaryxcv) 0%, var(--accentht) 50%, var(--primaryxcv-dark) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
            position: relative;
            padding: 0 40px;
            animation: titleGlowweq 3s ease-in-out infinite alternate;
        }
        
        .section-titleewfq h2::before,
        .section-titleewfq h2::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 120px;
            height: 20px;
            background: var(--gradientweq);
            border-radius: 2px;
            transform: translateY(-50%);
        }
        
        .section-titleewfq h2::before {
            clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
            right: 100%;
        }
        
        .section-titleewfq h2::after {
            clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
            left: 100%;
        }
        
        .section-titleewfq p {
            max-width: 800px;
            margin: 30px auto 0;
            font-size: 1.4rem;
            color: #444;
            font-weight: 500;
            line-height: 1.6;
        }

        .intro-textweqg {
            text-align: center;
            max-width: 1000px;
            margin: 0 auto 30px;
            font-size: 1.3rem;
            color: #333;
            line-height: 2;
            padding: 60px;
            background: rgba(255, 255, 255, 0.85);
            border-radius: 32px;
            backdrop-filter: blur(15px);
            box-shadow: var(--shadowrdf);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .intro-textweqg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            
            background: var(--gradientweq);
            border-radius: 2px;
        }

        /* Ultimate Timeline */
        .governance-contentefqe {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding: 80px 0;
        }

        /* Animated Central Timeline - FIXED POSITION */
        .timeline-lineewg {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 6px;
            background: linear-gradient(to bottom,
                transparent 0%,
                var(--primaryxcv) 10%,
                var(--accentht) 50%,
                var(--primaryxcv-dark) 90%,
                transparent 100%);
            border-radius: 3px;
            transform: translateX(-50%);
            z-index: 1;
        }
        
        .timeline-lineewg::before {
            content: '';
            position: absolute;
            left: 0;
            top: -100%;
            width: 6px;
            height: 200%;
            background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8) 50%, transparent);
            border-radius: 3px;
            animation: sparkleeqwfg 8s linear infinite;
        }
        
        .timeline-lineewg::after {
            content: '';
            position: absolute;
            left: -15px;
            top: 0;
            width: 36px;
            height: 36px;
            background: var(--whitewet);
            border: 4px solid var(--accentht);
            border-radius: 50%;
            transform: translateY(-50%);
            box-shadow: var(--glow-accentetwg);
            animation: pulseNodeew 3s ease-in-out infinite;
        }

        .compliance-itemde {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            opacity: 0;
            transform: translateY(80px);
            transition: var(--transitiongr);
        }

        .compliance-itemde.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .compliance-itemde:nth-child(odd) {
            justify-content: flex-start;
        }
        
        .compliance-itemde:nth-child(even) {
            justify-content: flex-end;
        }

        .compliance-content32t {
            width: 46%;
            background: var(--whitewet);
            padding: 60px 50px;
            border-radius: 32px;
            box-shadow: var(--shadowrdf);
            position: relative;
            transition: var(--transitiongr);
            overflow: hidden;
            z-index: 2;
        }
        
        /* Left side content */
        .compliance-itemde:nth-child(odd) .compliance-content32t {
            margin-right: auto;
            margin-left: 0;
        }
        
        /* Right side content */
        .compliance-itemde:nth-child(even) .compliance-content32t {
            margin-left: auto;
            margin-right: 0;
        }
        
        .compliance-content32t::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradientweq-light);
            opacity: 0;
            transition: opacity 0.6s ease;
            z-index: -1;
        }

        .compliance-content32t::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--gradientweq);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 1s ease 0.3s;
        }

        .compliance-itemde.visible .compliance-content32t::after {
            transform: scaleY(1);
        }

        .compliance-content32t:hover {
            transform: translateY(-20px) scale(1.03);
            box-shadow: var(--shadowrdf-hover);
        }
        
        .compliance-content32t:hover::before {
            opacity: 1;
        }

        .compliance-content32t h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            color: var(--primaryxcv-dark);
            position: relative;
            padding-left: 35px;
            line-height: 1.3;
        }

        .compliance-content32t h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 20px;
            height: 20px;
            background: var(--gradientweq);
            border-radius: 50%;
            transform: translateY(-50%);
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
        }

        .compliance-content32t p {
            font-size: 1.2rem;
            color: #444;
            line-height: 2;
            position: relative;
            z-index: 2;
        }
        
        /* Content Decoration */
        .content-decorationweh {
            position: absolute;
            width: 80px;
            height: 80px;
            opacity: 1;
            transition: opacity 0.5s ease;
        }
        
        .decoration-1weqt {
            top: 20px;
            left: 20px;
            border-top: 3px solid var(--primaryxcv);
            border-left: 3px solid var(--primaryxcv);
            border-radius: 15px 0 0 0;
        }
        
        .decoration-2qwe {
            bottom: 20px;
            right: 20px;
            border-bottom: 3px solid var(--accentht);
            border-right: 3px solid var(--accentht);
            border-radius: 0 0 15px 0;
        }
        
        /* .compliance-content32t:hover .content-decorationweh {
            opacity: 0.6;
        } */

        /* Icon Node - FIXED POSITION */
        .icon-nodereg {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 140px;
            background: var(--whitewet);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadowrdf);
            z-index: 10;
            transition: var(--transitiongr);
            border: 8px solid var(--whitewet);
        }
        
        .icon-nodereg::before {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: -8px;
            bottom: -8px;
            background: var(--gradientweq);
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .icon-innerdwsd {
            width: 100px;
            height: 100px;
            background: var(--gradientweq);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transitiongr);
        }
        
        .icon-innerdwsd::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shineewgt 4s infinite linear;
            opacity: 1;
        }

        .icon-innerdwsd i {
            font-size: 3rem;
            color: var(--whitewet);
            z-index: 3;
            text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: var(--transitiongr);
        }

        .compliance-itemde.visible .icon-innerdwsd {
            animation: iconPopetq 1s cubic-bezier(0.175, 0.885, 0.32, 1.5) 0.3s both;
        }

        .icon-nodereg:hover {
            transform: translateX(-50%) scale(1.1);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
        }
        
        .icon-nodereg:hover::before {
            opacity: 0;
        }

        .icon-nodereg:hover .icon-innerdwsd {
            transform: scale(1.2) rotate(360deg);
            box-shadow: var(--glow-accentetwg);
        }
        
        /* .icon-nodereg:hover .icon-innerdwsd::before {
            opacity: 1;
        } */
        
        .icon-nodereg:hover .icon-innerdwsd i {
            transform: scale(1.1);
        }

        /* connectorwergh Lines - FIXED FOR LEFT SIDE */
        .connectorwergh {
            position: absolute;
              --r: 0.8em; /* control the ribbon shape */

  padding-inline: calc(var(--r) + 0.3em);
  line-height: 1.8;
  clip-path: polygon(
    0 0,
    100% 0,
    calc(100% - var(--r)) 50%,
    100% 100%,
    0 100%,
    var(--r) 50%
  );
            height: 10px;
            background: var(--gradientweq);
            z-index: 1;
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 1s ease 0.5s;
        }
        
        /* Left side connectorwergh */
        .compliance-itemde:nth-child(odd) .connectorwergh {
            left: calc(50% + 70px);
            width: calc(23% - 70px);
            top: 50%;
            transform-origin: left;
        }
        
        /* Right side connectorwergh */
        .compliance-itemde:nth-child(even) .connectorwergh {
            right: calc(50% + 70px);
            left: auto;
            width: calc(23% - 70px);
            top: 50%;
            transform-origin: right;
        }
        
        .compliance-itemde.visible .connectorwergh {
            transform: scaleX(1);
        }

        /* Animations */
        @keyframes titleGlowweq {
            0% { 
                text-shadow: 0 5px 25px rgba(17, 94, 60, 0.2);
            }
            100% { 
                text-shadow: 0 5px 40px rgba(255, 107, 53, 0.4);
            }
        }
        
        @keyframes sparkleeqwfg {
            0% { top: -100%; opacity: 0; }
            50% { opacity: 0.8; }
            100% { top: 100%; opacity: 0; }
        }
        
        @keyframes pulseNodeew {
            0%, 100% { 
                transform: translateY(-50%) scale(1);
                box-shadow: var(--glow-accentetwg);
            }
            50% { 
                transform: translateY(-50%) scale(1.1);
                box-shadow: 0 0 60px rgba(255, 107, 53, 0.7);
            }
        }

        @keyframes iconPopetq {
            0% { 
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            60% { 
                transform: scale(1.3) rotate(20deg);
            }
            80% { 
                transform: scale(0.95) rotate(-10deg);
            }
            100% { 
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        @keyframes shineewgt {
            0% { transform: translate(-100%, -100%) rotate(45deg); }
            100% { transform: translate(100%, 100%) rotate(45deg); }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .section-titleewfq h2 { font-size: 4rem; }
            .compliance-content32t { width: 48%; padding: 50px 40px; }
            .icon-nodereg { width: 120px; height: 120px; }
            .icon-innerdwsd { width: 85px; height: 85px; }
            .icon-innerdwsd i { font-size: 2.5rem; }
            .connectorwergh { width: calc(25% - 70px); }
        }

        @media (max-width: 992px) {
            .timeline-lineewg,
            .timeline-lineewg::before,
            .timeline-lineewg::after {
                left: 90px;
            }
            
            .compliance-itemde {
                flex-direction: column !important;
                align-items: flex-start !important;
                margin-bottom: 180px;
            }
            
            .compliance-content32t {
                width: 100%;
                margin-left: 0px !important;
                margin-right: 0 !important;
                border-radius: 28px;
            }
            
            .icon-nodereg {
                left: 90px !important;
                top: -110px;
                transform: none !important;
            }
            
            /* Mobile connectorwerghs - vertical */
            .connectorwergh {
                left: 90px !important;
                right: auto !important;
                top: 50%;
                width: 4px !important;
                height: 80px;
                transform-origin: top !important;
                transform: scaleY(0) !important;
            }
            
            .compliance-itemde.visible .connectorwergh {
                transform: scaleY(1) !important;
            }
        }

        @media (max-width: 768px) {
            section { padding: 40px 0; }
            .containererwg { padding: 0 30px; }
            .section-titleewfq h2 { 
                font-size: 3.2rem; 
                padding: 0 20px;
            }
             .compliance-itemde:last-child {
                
                margin-bottom: 80px;
            }
            .governance-contentefqe{
                padding: 60px 0;
            }
            .connectorwergh{
                display: none;
            }
            .section-titleewfq h2::before,
            .section-titleewfq h2::after { width: 60px; }
            .intro-textweqg { 
                font-size: 1.15rem; 
                padding: 40px 30px; 
                margin-bottom: 50px; 
            }
            .compliance-content32t { 
                padding: 40px 35px; 
                margin-left: 0px !important; 
                border-radius: 24px; 
            }
            .icon-nodereg { 
                top: -80px !important; 

                left: 80px !important; 
                width: 100px; 
                height: 100px; 
            }
            .icon-innerdwsd { 
                width: 80px; 
                height: 80px; 
            }
            .icon-innerdwsd i { font-size: 2rem; }
            .compliance-content32t h3 { font-size: 1.8rem; }
            .timeline-lineewg,
            .timeline-lineewg::before,
            .timeline-lineewg::after { left: 80px; }
            .connectorwergh { left: 80px !important; }
        }

        @media (max-width: 576px) {
            .containererwg { padding: 0 20px; }
            .section-titleewfq h2 { font-size: 2.8rem; }
            .section-titleewfq p { font-size: 1.2rem; }
            .timeline-lineewg,
            .timeline-lineewg::before,
            .timeline-lineewg::after { left: 60px; }
            .compliance-content32t { 
                margin-left: 0px !important; 
                padding: 35px 35px; 
                border-radius: 20px; 
            }
            .icon-nodereg { 
                left: 60px !important; 
                width: 90px; 
                height: 90px; 
                border-width: 6px;
            }
            .icon-innerdwsd { 
                width: 70px; 
                height: 70px; 
            }
            .icon-innerdwsd i { font-size: 1.8rem; }
            .compliance-content32t h3 { 
                font-size: 1.6rem; 
                padding-left: 25px;
            }
            .compliance-content32t h3::before { 
                width: 15px; 
                height: 15px; 
            }
            .compliance-content32t p { font-size: 1.1rem; }
            .intro-textweqg { padding: 30px 25px; }
            .connectorwergh { left: 60px !important; }
        }
        
        @media (max-width: 480px) {
            .compliance-content32t { margin-left: 0px !important; padding: 35px 30px; }
            .icon-nodereg { left: 50px !important; width: 80px; height: 80px; }
            .timeline-lineewg,
            .timeline-lineewg::before,
            .timeline-lineewg::after { left: 50px; }
            .connectorwergh { left: 50px !important; }
        }
        
        @media (max-width: 400px) {
            .section-titleewfq h2 { font-size: 2.4rem; }
            .section-titleewfq p { font-size: 1.1rem; }
            .intro-textweqg { font-size: 1rem; padding: 25px 20px; }
            .compliance-content32t { margin-left: 0px !important; padding: 25px 20px; }
            .icon-nodereg { left: 40px !important; width: 90px; height: 90px; border-width: 4px; }
            .icon-innerdwsd { width: 70px; height: 70px; }
            .icon-innerdwsd i { font-size: 1.5rem; }
            .timeline-lineewg,
            .timeline-lineewg::before,
            .timeline-lineewg::after { left: 40px; }
            .connectorwergh { left: 40px !important; }
        }
/* <!-- GOVERNANCE SECTION ************************************************** END --> */