 /* ============================================
       ROOT & RESET
       ============================================ */
    :root {
      --ink: #081521;
      --ink-2: #102536;
      --cyan: #16b8e8;
      --cyan-2: #0b91c2;
      --cyan-dark: #0a7aa5;
      --gold: #d7b56d;
      --muted: #667684;
      --muted-light: #8a9aa8;
      --soft: #f3f7f9;
      --white: #fff;
      --shadow-sm: 0 4px 20px rgba(3, 20, 32, 0.06);
      --shadow-md: 0 16px 48px rgba(3, 20, 32, 0.10);
      --shadow-lg: 0 24px 70px rgba(3, 20, 32, 0.14);
      --shadow: 0 24px 70px rgba(3, 20, 32, 0.12);
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 24px;
      --radius-xl: 32px;
      --transition: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family:Inter,Arial,sans-serif;
      line-height: 1.7;
      color: #1a2630;
      background: #fff;
      overflow-x: hidden;
    }

    body.nav-open {
      overflow: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    ul {
      list-style: none;
    }

    button,
    input {
      font: inherit;
      border: none;
      outline: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* ============================================
       CONTAINER
       ============================================ */
    .container {
      width: min(1240px, calc(100% - 48px));
      margin: 0 auto;
    }

    section {
      padding: 100px 0;
      position: relative;
    }

    /* ============================================
       TYPOGRAPHY
       ============================================ */
    h1 {
      font-size: 45px;
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--ink);
	  margin-bottom: 20px;
    }

    h2 {
      font-size: 45px;
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.25;
      color: var(--ink);
    }

    h3 {
      font-size: clamp(1.2rem, 2.2vw, 1.6rem);
      font-weight: 700;
      line-height: 1.3;
      color: var(--ink);
    }

    h4 {
      font-size: 35px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--ink);
	  margin-bottom: 20px;
    }

    p,
    li {
      font-size: 15px !important;
      line-height: 1.7;
      color: #3d4a56;
    }

    .text-muted {
      color: var(--muted);
    }

    .text-white {
      color: #fff;
    }

    .text-white p,
    .text-white li,
    .text-white h1,
    .text-white h2,
    .text-white h3,
    .text-white h4 {
      color: rgba(255, 255, 255, 0.92);
    }

    .text-white .text-muted {
      color: rgba(255, 255, 255, 0.6);
    }

    /* ============================================
       REVEAL ANIMATIONS
       ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }
    .reveal-delay-2 {
      transition-delay: 0.2s;
    }
    .reveal-delay-3 {
      transition-delay: 0.3s;
    }
    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ============================================
       HEADER / NAV - Static
       ============================================ */
    .site-header {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #fff;
      border-bottom: 1px solid rgba(10, 35, 50, 0.06);
    }

    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 80px;
    }

    .logo {
      flex-shrink: 0;
    }

    .logo img {
      max-height: 70px;
      width: auto;
      display: block;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 2px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-left: auto;
    }

    .nav-menu a {
      position: relative;
      padding: 8px 16px;
      border-radius: 4px;
      color: #2c3e4e;
      transition: var(--transition);
	  font-size: 13px !important;
    }

    /* Only underline on hover and active */
    .nav-menu a::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 2px;
      width: 0;
      height: 2.5px;
      background: #041b70;
      border-radius: 4px;
      transform: translateX(-50%);
      transition: var(--transition);
    }

    .nav-menu a:hover::after {
      width: 60%;
    }

    .nav-menu a.active::after {
      width: 60%;
    }

    .nav-menu a:hover {
      color: #041b70;
    }

    .nav-menu a.active {
      color: #2c3e4e;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      padding: 10px;
      background: none;
      cursor: pointer;
      border-radius: 8px;
      transition: var(--transition);
    }

    .menu-toggle:hover {
      background: rgba(0, 0, 0, 0.04);
    }

    .menu-toggle span {
      width: 26px;
      height: 2.5px;
      background: #152633;
      border-radius: 4px;
      transition: var(--transition);
      transform-origin: center;
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    /* ============================================
       HERO - Within container
       ============================================ */
    .hero {
      min-height: 100vh;
      padding: 80px 0 60px;
      background: #061522;
      color: #fff;
      display: flex;
      align-items: center;
      overflow: hidden;
      position: relative;
	  margin-top: -60px;
    }

    .hero-slideshow {
      position: absolute;
      inset: 0;
    }

    .hero-slideshow .slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transform: scale(1.08);
      transition: opacity 1.6s ease, transform 8s ease;
      will-change: transform, opacity;
    }

    .hero-slideshow .slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, rgba(3, 16, 25, 0.92) 0%, rgba(3, 16, 25, 0.5) 50%, rgba(3, 16, 25, 0.75) 100%);
      z-index: 1;
    }

    .hero .container {
      position: relative;
      z-index: 2;
      /* Keep hero content aligned to the site's global container. */
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: end;
    }

    .hero-content {
      max-width: 720px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #16b8e8;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: "";
      width: 40px;
      height: 2px;
      background: var(--cyan);
      border-radius: 4px;
    }

    .hero-content h1 {
      font-size: 62px;
      font-weight: 800;
	  font-family: 'Arial Black', 'Montserrat', sans-serif;
      letter-spacing: -0.04em;
      line-height: 1.08;
      margin-bottom: 20px;
      color: #fff;
    }

    .hero-content p {
      font-size: 17px !important;
      max-width: 640px;
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 32px;
      line-height: 1.8;
	  text-align: justify;
    }

    .hero-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 16px 34px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 0.9rem;
      background: linear-gradient(135deg, var(--cyan), #52d6f7);
      color: #032032;
      box-shadow: 0 12px 40px rgba(22, 184, 232, 0.25);
      transition: var(--transition);
      cursor: pointer;
      border: none;
    }

    .hero-btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 20px 50px rgba(22, 184, 232, 0.35);
    }

    .hero-btn i {
      font-size: 0.75rem;
    }

    .hero-features {
      display: grid;
      gap: 16px;
    }

    .hero-feature {
      background: #000;
      border: 1px solid rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      padding: 20px 24px;
      border-radius: var(--radius-md);
      transition: var(--transition);
      display: flex;
      gap: 16px;
      align-items: flex-start;
	  width: 480px;
	  margin-left: 60px;
	  top: 30px;
    }

    .hero-feature:hover {
      transform: translateX(6px);
      background: rgba(255, 255, 255, 0.10);
      border-color: rgba(142, 232, 255, 0.25);
    }

    .hero-feature i {
      color: #75ddfa;
      font-size: 1.4rem;
      margin-top: 2px;
      flex-shrink: 0;
	  text-align: justify;
    }

    .hero-feature h4 {
      font-size: 0.95rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 4px;
    }

    .hero-feature p {
      font-size: 14px !important;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.5;
	  text-align: justify;
	  margin-top: 5px;
    }

    /* ============================================
       PREMIUM POLISH / LAYOUT SAFEGUARDS
       ============================================ */
    .hero-grid > *,
    .row > *,
    .section-head > * {
      min-width: 0;
    }

    .hero-content p,
    .hero-feature p,
    .smart-card p,
    .newsletter-content p,
    .footer p {
      overflow-wrap: anywhere;
    }

    .hero-feature,
    .smart-card,
    .stat-item,
    .about-image img,
    .why-choose .images-col img {
      will-change: transform;
    }

    .hero-btn,
    .btn-primary,
    .back-top {
      -webkit-tap-highlight-color: transparent;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    /* ============================================
       BUTTONS
       ============================================ */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 32px;
      border-radius: 60px;
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition);
      cursor: pointer;
      border: none;
      text-align: center;
      justify-content: center;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--cyan), #52d6f7);
      color: #032032;
      box-shadow: 0 8px 30px rgba(22, 184, 232, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 45px rgba(22, 184, 232, 0.3);
    }

    /* ============================================
       GRID / LAYOUT
       ============================================ */
    .row {
      display: flex;
      flex-wrap: wrap;
      gap: 48px;
      align-items: stretch;
    }

    .row-start {
      align-items: flex-start;
    }

    .col-50 {
      flex: 1 1 calc(50% - 24px);
      min-width: 300px;
    }

    .col-33 {
      flex: 1 1 calc(23.333% - 32px);
      min-width: 250px;
	  display: flex;
    }

    .col-40 {
      flex: 1 1 calc(40% - 24px);
      min-width: 280px;
    }

    .col-60 {
      flex: 1 1 calc(60% - 24px);
      min-width: 320px;
    }

    .gap-24 {
      gap: 24px;
    }
    .gap-32 {
      gap: 32px;
    }

    /* ============================================
       ABOUT
       ============================================ */
    .about-section {
      background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
      padding: 100px 0 80px;
    }

    .about-section .col-50:first-child {
      padding-right: 20px;
    }

    .about-section p {
      color: #4a5a66;
      margin-bottom: 8px;
	  font-size: 17px;
	  text-align: justify;
    }

    .about-section .eyebrow h2 {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: var(--cyan-2);
      text-transform: uppercase;
    }

    .about-section ul {
      margin-top: 24px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 24px;
    }

    .about-section li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      font-size: 0.95rem;
      color: #2c3e4e;
    }

    .about-section li i {
      color: var(--cyan);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .about-section .btn-primary {
      margin-top: 28px;
    }

    .about-image {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .about-image img {
      width: 100%;
      border-radius: var(--radius-lg);      
      position: relative;
      z-index: 1;
      aspect-ratio: 4/4;
      object-fit: cover;
    }

    /* ============================================
       SUSTAINABILITY
       ============================================ */
    .sustainability {
      color: #fff;
      overflow: hidden;
      position: relative;
      background-image: url('images/icons/dotted-map.png');
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
    }

    .sustainability::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(7, 26, 40, 0.9);
      z-index: 1;
    }

    .sustainability .container {
      position: relative;
      z-index: 2;
    }

    .sustainability .eyebrow {
      color: #16b8e8;
    }

    .sustainability .eyebrow h2 {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: #16b8e8;
      text-transform: uppercase;
    }

    .sustainability h1 {
      color: #fff;
      margin: 8px 0 16px;
    }

    .sustainability .col-50:first-child p {
      color: #fff;
      max-width: 595px;
	  font-size: 17px !important;
	  text-align: justify;
	  margin-bottom: 30px;
    }

    .sustainability .col-50 ul {
      display: grid;
      gap: 24px;
    }

    .sustainability li {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .sustainability li i {
      color: #72dff8;
      font-size: 1.2rem;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .sustainability h4 {
      color: #fff;
      font-size: 1rem;
      margin-bottom: 2px;
    }

    .sustainability li p {
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.9rem;
    }
	
	/* ============================================
       company-overview
       ============================================ */
    .company-overview {
      color: #fff;
      overflow: hidden;
      position: relative;
      background-image: url('images/icons/dotted-map.png');
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
    }

    .company-overview::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(7, 26, 40, 0.9);
      z-index: 1;
    }

    .company-overview .container {
      position: relative;
      z-index: 2;
    }

    .company-overview .eyebrow {
      color: #16b8e8;
    }

    .company-overview .eyebrow h2 {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      color: #16b8e8;
      text-transform: uppercase;
    }

    .company-overview h1 {
      color: #fff;
      margin: 8px 0 16px;
    }

    .company-overview .col-50:first-child p {
      color: #fff;
      max-width: 595px;
	  font-size: 17px !important;
	  text-align: justify;
	  margin-bottom: 30px;
    }

    .company-overview .col-50 ul {
      display: grid;
      gap: 13px;	  
    }

    .company-overview li {
      display: flex;
      gap: 15px;
      align-items: flex-start;
	  color: #fff;
	  text-align: justify;
    }

    .company-overview li i {
      color: #fff;
      font-size: 1.2rem;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .company-overview h4 {
      font-size: 21px;
      font-weight: 700;
      line-height: 1.35;
      color: #fff;
	  text-align: justify;
	  margin-bottom: 30px;
    }

    .company-overview li p {
      color: #fff;
      font-size: 15px !important;
	  text-align: justify;
    }

    /* ============================================
       STATS
       ============================================ */
    .stats {
      background: var(--soft);
      padding: 60px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .stat-item {
      background: #fff;
      padding: 32px 24px;
      border-radius: var(--radius-md);
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(0, 0, 0, 0.03);
      transition: var(--transition);
    }

    .stat-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .stat-item .number {
      font-size: clamp(2.4rem, 4vw, 3.4rem);
      font-weight: 800;
      color: var(--cyan-2);
      line-height: 1.1;
      letter-spacing: -0.02em;
    }

    .stat-item .label {
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.02em;
    }

    /* ============================================
       SMART REFINING - EXACT CSS AS REQUESTED
       ============================================ */
    .smart-refining { background: #fff; }

    .section-head {
      display: flex;
      gap: 50px;
      align-items: flex-end;
      margin-bottom: 60px;
    }

    .section-head .col-50:first-child {
      flex: 1.1;
    }

    .section-head .col-50:last-child {
      flex: 1;
    }

    .section-title {
      font-size: 45px;
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.12;
      color: var(--ink);
	  margin-bottom: 35px;
    }

    .section-sub {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
	  text-align: justify;
    }

    .section-divider {
      margin: 20px 0 0;
      border: 0;
      border-top: 2px solid #0b91c2;
      width: 80px;
    }

    .smart-card {
      display: flex;
    flex-direction: column;
    flex: 1;

    background: #f6f9fa;
    border: 1px solid #e8edf0;
    padding: 32px 28px 36px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    }

    .smart-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--cyan), #52d6f7);
      transition: var(--transition);
    }

    .smart-card:hover {
      transform: translateY(-8px);
      background: #fff;
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }

    .smart-card:hover::before {
      width: 100%;
    }

    .smart-card i {
      font-size: 2rem;
      color: var(--cyan-2);
      margin-bottom: 18px;
      display: inline-block;
    }

    .smart-card h4 {
      font-size: 17px !important;
      margin-bottom: 10px;
      color: var(--ink);
    }

    .smart-card p {
      flex-grow: 1;
      font-size: 15px !important;
      color: var(--muted);
      line-height: 1.6;
	  margin-top: 10px;
	  margin-bottom: 10px;
	  text-align: justify;
    }
	
		/* ============================================
				CORE SERVICES
       ============================================ */
    .core-refining { background: #f3f7f9; }

    .core-card {
    display: flex;
    flex-direction: column;
    flex: 1;

    background: #fff;
    border: 1px solid #e8edf0;
    padding: 32px 28px 36px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    }

    .core-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--cyan), #52d6f7);
      transition: var(--transition);
    }

    .core-card:hover {
      transform: translateY(-8px);
      background: #fff;
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }

    .core-card:hover::before {
      width: 100%;
    }

    .core-card i {
      font-size: 2rem;
      color: var(--cyan-2);
      margin-bottom: 18px;
      display: inline-block;
    }

    .core-card h4 {
      font-size: 17px !important;
      margin-bottom: 10px;
      color: var(--ink);
    }

    .core-card p {
      flex-grow: 1;
      font-size: 15px !important;
      color: var(--muted);
      line-height: 1.6;
	  margin-top: 10px;
	  margin-bottom: 10px;
	  text-align: justify;
    }

    /* =========================================
   WHY CHOOSE — OVERLAPPING IMAGE LAYOUT
   ========================================= */

	.why-choose {
		background: var(--soft);
		padding: 100px 0;
	}

	/* Image composition container */
	.why-choose .images-col {
		position: relative;
		display: block;
		width: 100%;
		height: 500px;
	}

	/* Main / large image */
	.why-choose .images-col > img:first-child {
		position: absolute;
		top: 0;
		left: 0;

		width: 95%;
		height: 450px;

		display: block;
		object-fit: cover;
		object-position: center;

		border-radius: 0;
		box-shadow: var(--shadow);

		z-index: 1;
	}

	/* Small overlapping image */
	.why-choose .images-col .img-small {
		position: absolute;
		right: 0;
		bottom: 0;

		width: 48%;
		height: 220px;

		display: block;
		object-fit: cover;
		object-position: center;

		border-radius: 0;
		border: 6px solid var(--soft);

		margin: 0;

		box-shadow: var(--shadow);

		z-index: 2;
	}

	/* =========================================
	   RIGHT SIDE CONTENT
	   ========================================= */

	.why-choose .col-50:last-child {
		padding-left: 20px;
	}

	.why-choose .eyebrow-text {
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.15em;
		color: var(--cyan-2);
		text-transform: uppercase;
		margin-bottom: 8px;
		display: block;
	}

	.why-choose p {
		color: #4a5a66;
		font-size: 17px !important;
		text-align: justify;
		margin-bottom: 20px;
	}

	/* =========================================
	   PROGRESS BARS
	   ========================================= */

	.progress-item {
		margin-top: 20px;
	}

	.progress-item .label {
		display: flex;
		justify-content: space-between;
		font-weight: 600;
		font-size: 0.85rem;
		color: var(--ink);
	}

	.progress-item .label span:last-child {
		color: var(--cyan-2);
		font-weight: 700;
	}

	.progress-track {
		height: 6px;
		background: #dce5e9;
		border-radius: 99px;
		overflow: hidden;
		margin-top: 6px;
	}

	.progress-fill {
		height: 100%;
		width: 0;
		background: linear-gradient(
			90deg,
			var(--cyan-2),
			var(--cyan)
		);
		border-radius: 99px;
		transition: width 1.8s cubic-bezier(0.22, 0.78, 0.36, 1);
	}
	
	/* =========================================
			OUR APPROACH
	   ========================================= */
	
	.why-approach {
		background: #fff;
		padding: 100px 0;
	}

	/* Image composition container */
	.why-approach .images-col {
		position: relative;
		display: block;
		width: 100%;
		height: 500px;
	}

	/* Main / large image */
	.why-approach .images-col > img:first-child {
		position: absolute;
		top: 0;
		left: 0;

		width: 95%;
		height: 450px;

		display: block;
		object-fit: cover;
		object-position: center;

		border-radius: 0;
		box-shadow: var(--shadow);

		z-index: 1;
	}

	/* Small overlapping image */
	.why-approach .images-col .img-small {
		position: absolute;
		right: 0;
		bottom: 0;

		width: 48%;
		height: 220px;

		display: block;
		object-fit: cover;
		object-position: center;

		border-radius: 0;
		border: 6px solid var(--soft);

		margin: 0;

		box-shadow: var(--shadow);

		z-index: 2;
	}

	/* =========================================
	   RIGHT SIDE CONTENT
	   ========================================= */

	.why-approach .col-50:last-child {
		padding-left: 20px;
	}

	.why-approach .eyebrow-text {
		font-size: 0.75rem;
		font-weight: 700;
		letter-spacing: 0.15em;
		color: var(--cyan-2);
		text-transform: uppercase;
		margin-bottom: 8px;
		display: block;
	}

	.why-approach p {
		color: #4a5a66;
		font-size: 17px !important;
		text-align: justify;
		margin-bottom: 20px;
	}

    /* ============================================
       BRANDS - EXACT CSS AS REQUESTED
       ============================================ */
    .brands {
      background: #fff;
      padding: 70px 0;
    }

    .brands .row {
      gap: 40px;
    }

    .brands .col-50:first-child h2 {
      font-size: 30px;
    }

    .brands .col-50:first-child hr {
      width: 60px;
      border: 0;
      border-top: 3px solid var(--cyan);
      margin: 12px 0 0;
    }

    .brand-carousel {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  width: 100%;
	}

	.brand-carousel img {
	  display: block;
	  width: 100%;
	  max-width: 1000px;
	  height: auto;
	  object-fit: contain;
	  transition: 0.3s;
	}

	.brand-carousel img:hover {
	  transform: scale(1.05);
	}
	
	.services-cta {
          background: #f3f7f9;
      padding-top: 100px 0;
    }

    .services-cta-box {
      position: relative;
      overflow: hidden;
      padding: 54px 60px;
      border-radius: var(--radius-lg);
      background: var(--ink);
      box-shadow: var(--shadow-lg);
    }

    .services-cta-box::before {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -80px;
      top: -100px;
      border-radius: 50%;
      background: rgba(22, 184, 232, 0.14);
    }

    .services-cta-content {
      position: relative;
      z-index: 1;
      max-width: 820px;
    }

    .services-cta-content .eyebrow {
      margin-bottom: 14px;
    }

    .services-cta-content h2 {
      color: #fff;
      margin-bottom: 16px;
      font-size: 28px;
    }

    .services-cta-content p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 15px !important;
      line-height: 1.75;
      text-align: justify;
      margin-bottom: 28px;
    }
	
	/* ==========================================================
       SUSTAINABILITY PAGE
       TOO "WASAT OIL"
    ========================================================== */

    .sustainability-page {
      background: #fff;
    }

    /* ==========================================================
       SUSTAINABILITY INTRO
    ========================================================== */

    .sustainability-intro {
      padding: 100px 0 80px;
      background: #fff;
    }

    .sustainability-intro-layout {
      display: flex;
      align-items: center;
      gap: 70px;
    }

    .sustainability-intro-content,
    .sustainability-intro-image {
      flex: 1 1 50%;
      min-width: 0;
    }

    .sustainability-intro-content .eyebrow {
      margin-bottom: 12px;
    }

    .sustainability-intro-content h2 {
      margin: 0 0 22px;
      color: var(--ink);
      font-size: 43px;
      line-height: 1.14;
      letter-spacing: -0.03em;
    }

    .sustainability-intro-content > p {
      margin: 0 0 20px;
      color: #526575;
      font-size: 15px !important;
      line-height: 1.8;
      text-align: justify;
    }

    .sustainability-intro-image {
      position: relative;
    }

    .sustainability-intro-image::before {
      content: "";
      position: absolute;
      top: 25px;
      left: -25px;
      width: 100%;
      height: 100%;
      border: 1px solid rgba(22, 184, 232, 0.22);
      border-radius: var(--radius-lg);
      z-index: 0;
    }

    .sustainability-intro-image img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .sustainability-quote {
      position: absolute;
      z-index: 2;
      left: -35px;
      bottom: 35px;
      width: min(410px, 85%);
      padding: 25px 28px;
      border-left: 4px solid var(--cyan-2);
      background: rgba(7, 26, 40, 0.94);
      box-shadow: 0 18px 45px rgba(7, 26, 40, 0.2);
    }

    .sustainability-quote i {
      margin-bottom: 12px;
      color: var(--cyan-2);
      font-size: 20px;
    }

    .sustainability-quote p {
      margin: 0;
      color: #fff;
      font-size: 14px !important;
      line-height: 1.65;
      font-weight: 500;
    }


    /* ==========================================================
       SUSTAINABILITY PRINCIPLES
    ========================================================== */

    .sustainability-hseq {
      padding: 85px 0;
      background: var(--soft);
      margin-bottom: 0 !important;
    }
	
	.sustainability-hseq,
	.section-title {
      color: var(--ink) !important;
    }	

    .sustainability-hseq-item {
      display: flex;
      align-items: center;
      gap: 70px;
    }

    .sustainability-hseq-itemm {
      margin-top: 85px;
      padding-top: 85px;
      border-top: 1px solid #e8edf0;
    }

    .sustainability-hseq-item + .sustainability-hseq-item {
      margin-top: 85px;
      padding-top: 85px;
      border-top: 1px solid #e8edf0;
    }

    .sustainability-hseq-item.reverse {
      flex-direction: row-reverse;
    }

    .sustainability-hseq-image,
    .sustainability-hseq-content {
      flex: 1 1 50%;
      min-width: 0;
    }

    .sustainability-hseq-image {
      position: relative;
    }

    .sustainability-hseq-image::after {
      content: "";
      position: absolute;
      right: -15px;
      bottom: -15px;
      width: 75%;
      height: 75%;
      border-right: 2px solid rgba(22, 184, 232, 0.25);
      border-bottom: 2px solid rgba(22, 184, 232, 0.25);
      border-radius: 0 0 20px 0;
      z-index: 0;
    }

    .sustainability-hseq-image img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 440px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .sustainability-hseq-content {
      padding: 10px 0;
    }

    .sustainability-hseq-content .eyebrow {
      margin-bottom: 10px;
    }

    .sustainability-hseq-content h2 {
      margin: 0 0 20px;
      color: var(--ink);
      font-size: 38px;
      line-height: 1.15;
      letter-spacing: -0.025em;
    }

    .sustainability-hseq-content p {
      margin: 0 0 17px;
      color: #526575;
      font-size: 15px !important;
      line-height: 1.8;
      text-align: justify;
    }

    .sustainability-hseq-content .hseq-highlight {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-top: 25px;
      padding: 18px 20px;
      border-left: 3px solid var(--cyan-2);
      background: #fff;
    }

    .sustainability-hseq-content .hseq-highlight i {
      margin-top: 4px;
      color: var(--cyan-2);
      font-size: 18px;
      flex-shrink: 0;
    }

    .sustainability-hseq-content .hseq-highlight span {
      color: #30495c;
      font-size: 13px;
      line-height: 1.65;
      font-weight: 600;
    }

    /* ==========================================================
       SUSTAINABILITY COMMITMENT
    ========================================================== */

	.sustainability-commitment {
	  padding: 100px 0;
	  position: relative;
	  overflow: hidden;
	  color: #fff;
	  background-image: url('wp-include/css/images/icons/dotted-map.html');
	  background-size: cover;
	  background-position: center;
	  background-repeat: no-repeat;
	  background-blend-mode: overlay;
	}

	.sustainability-commitment::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: rgba(7, 26, 40, 0.9);
	  z-index: 1;
	}
	
		
    .sustainability-commitment .container {
      position: relative;
      z-index: 1;
    }

    .sustainability-commitment-head {
      display: flex;
	  gap: 50px;
	  align-items: flex-end;
	  margin-bottom: 120px !important;
    }

    .sustainability-commitment-head .eyebrow {
      color: var(--cyan-2);
    }

    .sustainability-commitment-head h2 {
      margin: 12px 0 17px;
      color: #fff !important;
      font-size: 42px;
      line-height: 1.15;
    }

    .sustainability-commitment-head p {
      color: rgba(255, 255, 255, 0.68);
      font-size: 15px !important;
      line-height: 1.75;
      text-align: justify;
    }

    .sustainability-commitment-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .sustainability-commitment-card {
      padding: 30px 27px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--radius-md);
      background: rgba(255, 255, 255, 0.035);
      transition: var(--transition);
    }

    .sustainability-commitment-card:hover {
      transform: translateY(-5px);
      border-color: rgba(22, 184, 232, 0.25);
      background: rgba(255, 255, 255, 0.055);
    }

    .sustainability-commitment-card i {
      margin-bottom: 18px;
      color: var(--cyan-2);
      font-size: 22px;
    }

    .sustainability-commitment-card h3 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 18px;
    }

    .sustainability-commitment-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.62);
      font-size: 13px !important;
      line-height: 1.7;
      text-align: justify;
    }

    /* ============================================
       NEWSLETTER - With GIF background
       ============================================ */
    .newsletter-modern {
      padding: 80px 0;
      color: #fff;
      position: relative;
      overflow: hidden;
      background-image: url('images/icons/dotted-map.png');
      background-size: cover;
      background-position: center;
      background-blend-mode: overlay;
    }

    .newsletter-modern::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(7, 26, 40, 0.9);
      z-index: 1;
    }

    .newsletter-modern .container {
      position: relative;
      z-index: 2;
    }

    .newsletter-wrapper {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 48px;
    }

    .newsletter-content {
      flex: 1 1 380px;
    }

    .newsletter-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(22, 184, 232, 0.12);
      color: #16b8e8;
      padding: 6px 18px;
      border-radius: 60px;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 16px;
      border: 1px solid rgba(22, 184, 232, 0.08);
    }

    .newsletter-content h2 {
      color: #fff;
      font-size: clamp(1.4rem, 2.8vw, 2.2rem);
      margin-bottom: 8px;
    }

    .newsletter-content p {
      color: #fff;
      font-size: clamp(0.9rem, 1vw, 1.05rem);
    }

    .newsletter-form-modern {
      flex: 1 1 420px;
    }

    .form-group {
      display: flex;
      gap: 12px;
      background: rgba(255, 255, 255, 0.05);
      padding: 4px;
      border-radius: 60px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: var(--transition);
    }

    .form-group:focus-within {
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(22, 184, 232, 0.1);
      background: rgba(255, 255, 255, 0.08);
    }

    .form-group input {
      flex: 1;
      background: transparent;
      border: none;
      padding: 14px 24px;
      color: #fff;
      font-size: 0.95rem;
      outline: none;
      min-width: 0;
    }

    .form-group input::placeholder {
      color: rgba(255, 255, 255, 0.35);
    }

    .form-group button {
      background: linear-gradient(135deg, var(--cyan), #52d6f7);
      border: none;
      padding: 14px 32px;
      border-radius: 60px;
      font-weight: 700;
      font-size: 0.9rem;
      color: #032032;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      white-space: nowrap;
    }

    .form-group button:hover {
      transform: scale(1.02);
      box-shadow: 0 8px 32px rgba(22, 184, 232, 0.3);
    }

    .form-note {
      font-size: 0.75rem;
      color: #fff;
      margin-top: 12px;
      padding-left: 8px;
    }
	
	/* ===== BREADCRUMB HERO SECTION ===== */
	
	.breadcrumb-page-hero {
	  min-height: 400px;
	  padding: 120px 0 70px;
	  display: flex;
	  align-items: center;
	  overflow: hidden;
	  position: relative;
	  color: #fff;
	  background: #061522;
	  margin-top: -60px;
	}

	.breadcrumb-page-hero-bg {
	  position: absolute;
	  inset: 0;
	  background:
		url('images/background/hydraulic.jpg')
		center / cover no-repeat;
	  transform: scale(1.04);
	}

	.breadcrumb-page-hero-overlay {
	  position: absolute;
	  inset: 0;
	  background: linear-gradient(
		100deg,
		rgba(3, 16, 25, 0.94) 0%,
		rgba(3, 16, 25, 0.68) 52%,
		rgba(3, 16, 25, 0.82) 100%
	  );
	}

	.breadcrumb-page-hero .container {
	  position: relative;
	  z-index: 2;
	}

	.breadcrumb-page-hero-content {
	  max-width: 820px;
	}

	.breadcrumb-page-hero-content h1 {
	  color: #fff;
	  font-size: 45px;
	  margin-bottom: 18px;
	}

	.breadcrumb-page-hero-content p {
	  max-width: 700px;
	  color: rgba(255,255,255,.78);
	  font-size: 15px !important;
	  line-height: 1.8;
	  text-align: justify;
	}
	
	/* ==========================================================
	   ABOUT OVERVIEW
	========================================================== */

	.about-overview {
	  background: #fff;
	  padding: 90px 0 95px;
	}

	.about-overview-layout {
	  display: grid;
	  grid-template-columns: minmax(0, 2.45fr) minmax(300px, 1fr);
	  gap: 52px;
	  align-items: start;
	}

	.about-overview-main {
	  min-width: 0;
	}

	.about-overview-main .eyebrow {
	  margin-bottom: 10px;
	}

	.about-overview-main h1 {
	  margin: 0 0 20px;
	  font-size: 36px;
	  line-height: 1.15;
	  font-weight: 700;
	  color: var(--ink);
	}

	.about-overview-main > p {
	  margin: 0 0 25px;
	  font-size: 16px !important;
	  line-height: 1.5;
	  color: #30495c;
	  text-align: justify;
	}

	.about-overview-images {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 20px;
	  margin-top: 34px;
	}

	.about-overview-image {
	  width: 100%;
	  height: 278px;
	  overflow: hidden;
	}

	.about-overview-image img {
	  width: 100%;
	  height: 100%;
	  display: block;
	  object-fit: cover;
	  border-radius: 0;
	  box-shadow: none;
	  transition: transform .5s ease;
	}

	.about-overview-image:hover img {
	  transform: scale(1.035);
	}


	/* ==========================================================
	   BENEFITS
	========================================================== */

	.about-benefits {
	  margin-top: 28px;
	}

	.about-benefits h2 {
	  margin: 0 0 25px;
	  font-size: 26px;
	  line-height: 1.2;
	  color: #080808;
	  font-weight: 600;
	}

	.about-benefits-grid {
	  display: grid;
	  grid-template-columns: 1fr 1fr;
	  gap: 30px;
	}

	.about-benefits-grid ul {
	  margin: 0;
	  padding: 0;
	  list-style: none;
	}

	.about-benefits-grid li {
	  display: flex;
	  align-items: center;
	  gap: 10px;
	  margin-bottom: 8px;
	  color: #30495c;
	  font-size: 16px !important;
	  line-height: 1.35;
	}

	.about-benefits-grid li i {
	  color: #31536a;
	  font-size: 13px;
	  width: 16px;
	  flex-shrink: 0;
	}


	/* ==========================================================
	   COMPANY DETAILS SIDEBAR
	========================================================== */

	.about-overview-sidebar {
	  min-width: 0;
	}

	.company-details {
	  width: 100%;
	}

	.company-detail {
	  padding: 0 0 14px;
	  margin-bottom: 20px;
	  border-bottom: 1px solid #c5c9ca;
	}

	.company-detail h4 {
	  margin: 0 0 7px;
	  color: #000000;
	  font-size: 20px;
	  line-height: 1.25;
	  font-weight: 600;
	  text-transform: uppercase;
	}

	.company-detail p {
	  margin: 0;
	  color: #30495c;
	  font-size: 16px !important;
	  line-height: 1.45;
	}


	/* ==========================================================
	   NEED HELP BOX
	========================================================== */

	.about-help-box {
	  position: relative;
	  min-height: 216px;
	  margin-top: 40px;
	  overflow: hidden;
	  background-image:
		url("../images/resource/oil-refinery-factory-at-the-cloudy-sky-petrochemical-plant-petroleum.html");
	  background-size: cover;
	  background-position: center;
	}

	.about-help-overlay {
	  position: absolute;
	  inset: 0;
	  background: rgba(66, 94, 91, .78);
	}

	.about-help-content {
	  position: relative;
	  z-index: 2;
	  padding: 29px 30px 30px;
	  background-image: url('images/icons/dotted-map.png');
	}

	.about-help-content h3 {
	  margin: 0 0 19px;
	  color: #fff;
	  font-size: 28px;
	  line-height: 1.15;
	  font-weight: 700;
	}

	.about-help-content p {
	  margin: 0 0 24px;
	  color: #fff;
	  font-size: 16px !important;
	  line-height: 1.4;
	}

	.about-help-btn {
	  display: inline-flex;
	  align-items: center;
	  justify-content: center;
	  gap: 9px;
	  min-height: 44px;
	  padding: 0 25px;
	  color: #07141c;
	  background: #13a9e2;
	  font-size: 14px;
	  font-weight: 600;
	  text-decoration: none;
	  transition: var(--transition);
	}

	.about-help-btn:hover {
	  color: #fff;
	  background: #078dc2;
	  transform: translateY(-2px);
	}
	
	
	/* ===== PRINCIPLES ===== */
.about-principles {
  background: #fff;
}

.about-section-head {
  margin-bottom: 45px;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-info-card {
  padding: 34px 30px;
  background: #f8fbfc;
  border: 1px solid rgba(10,35,50,.07);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.about-info-card-dark {
  background: var(--ink);
}

.about-info-card h3 {
  margin: 18px 0 12px;
}

.about-info-card p {
  font-size: 15px !important;
  text-align: justify;
  color: #4a5a66;
}

.about-info-card-dark h3,
.about-info-card-dark p {
  color: #fff;
}

.about-info-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(22,184,232,.12);
  color: var(--cyan);
  font-size: 1.25rem;
}

.about-value-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.about-value-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: #4a5a66;
  font-size: 15px !important;
  text-align: justify;
}

.about-value-list li i {
  color: #72dff8;
  margin-top: 5px;
  flex-shrink: 0;
}

.structure-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.structure-points span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2c3e4e;
}

.structure-points i {
  color: var(--cyan);
}
	
	 /* ==========================================================
       CONTACT PAGE
       TOO "WASAT OIL"
    ========================================================== */

    .contact-page {
      background: #fff;
    }

    /* ==========================================================
       CONTACT INFORMATION
    ========================================================== */

    .contact-information {
      padding: 90px 0;
      background: var(--soft);
    }

    .contact-section-head {
      margin-bottom: 48px;
    }

    .contact-information-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .contact-info-card {
      position: relative;
      min-height: 220px;
      padding: 30px 27px;
      background: #fff;
      border: 1px solid rgba(18, 48, 70, .08);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .contact-info-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }

    .contact-info-icon {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      border-radius: 14px;
      background: rgba(22, 184, 232, .09);
      color: var(--cyan-2);
      font-size: 19px;
    }

    .contact-info-card h3 {
      margin: 0 0 10px;
      color: var(--ink);
      font-size: 18px;
      line-height: 1.3;
    }

    .contact-info-card p {
      margin: 0;
      color: #617381;
      font-size: 13px !important;
      line-height: 1.75;
    }

    .contact-info-card a {
      color: #526575;
      transition: color .25s ease;
    }

    .contact-info-card a:hover {
      color: var(--cyan-2);
    }


    /* ==========================================================
       CONTACT FORM + OFFICE
    ========================================================== */

    .contact-main {
      padding: 100px 0;
      background: #fff;
    }

    .contact-main-layout {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 65px;
      align-items: start;
    }

    .contact-form-panel,
    .contact-office-panel {
      min-width: 0;
    }

    .contact-form-panel h2,
    .contact-office-panel h2 {
      margin: 0 0 13px;
      color: var(--ink);
      font-size: 34px;
      line-height: 1.2;
      letter-spacing: -.025em;
    }

    .contact-form-panel > p,
    .contact-office-panel > p {
      margin: 0 0 30px;
      color: #617381;
      font-size: 14px !important;
      line-height: 1.75;
    }

    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }

    .contact-form .form-field.full {
      grid-column: 1 / -1;
    }

    .contact-form label {
      display: block;
      margin-bottom: 8px;
      color: var(--ink);
      font-size: 12px;
      line-height: 1.4;
      font-weight: 700;
      letter-spacing: .35px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      width: 100%;
      box-sizing: border-box;
      border: 1px solid rgba(18, 48, 70, .12);
      border-radius: 8px;
      outline: none;
      background: #fff;
      color: #334c5e;
      font-family: inherit;
      font-size: 13px;
      transition: border-color .25s ease, box-shadow .25s ease;
    }

    .contact-form input,
    .contact-form select {
      height: 52px;
      padding: 0 15px;
    }

    .contact-form textarea {
      min-height: 155px;
      padding: 15px;
      resize: vertical;
      line-height: 1.65;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
      border-color: var(--cyan-2);
      box-shadow: 0 0 0 3px rgba(22, 184, 232, .09);
    }

    .contact-form .form-submit {
      grid-column: 1 / -1;
      margin-top: 5px;
    }

    .contact-form .btn {
      border: 0;
      cursor: pointer;
    }


    /* ==========================================================
       OFFICE PANEL
    ========================================================== */

    .contact-office-box {
      padding: 35px;
      border-radius: var(--radius-lg);
      background: var(--ink);
      box-shadow: var(--shadow-lg);
    }

    .contact-office-box .eyebrow {
      color: var(--cyan-2);
      margin-bottom: 11px;
    }

    .contact-office-box h3 {
      margin: 0 0 15px;
      color: #fff;
      font-size: 26px;
      line-height: 1.25;
    }

    .contact-office-box > p {
      margin: 0 0 28px;
      color: rgba(255,255,255,.65);
      font-size: 13px !important;
      line-height: 1.75;
    }

    .office-detail {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      padding: 19px 0;
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .office-detail:last-child {
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .office-detail-icon {
      width: 37px;
      height: 37px;
      flex: 0 0 37px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      background: rgba(22,184,232,.10);
      color: var(--cyan-2);
      font-size: 14px;
    }

    .office-detail strong {
      display: block;
      margin-bottom: 4px;
      color: #fff;
      font-size: 12px;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: .7px;
    }

    .office-detail span,
    .office-detail a {
      color: rgba(255,255,255,.62);
      font-size: 13px;
      line-height: 1.6;
    }

    .office-detail a:hover {
      color: var(--cyan-2);
    }

    /* ==========================================================
       MAP / LOCATION
    ========================================================== */

.contact-location {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image: url('images/icons/dotted-map.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.contact-location::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 40, 0.9);
  z-index: 1;
}

.contact-location .container {
  position: relative;
  z-index: 2;
}

.contact-location-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.contact-location-head .eyebrow {
  color: #fff;
}

.contact-location-head h2 {
  margin: 10px 0 15px;
  color: #fff;
  font-size: 38px;
  line-height: 1.15;
}

.contact-location-head p {
  margin: 0;
  color: #fff;
  font-size: 14px !important;
  line-height: 1.75;
}

.contact-map {
  position: relative;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      135deg,
      rgba(22, 184, 232, .06),
      rgba(18, 48, 70, .08)
    );
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

.contact-map-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(
      rgba(255, 255, 255, .82),
      rgba(255, 255, 255, .82)
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 44px,
      rgba(18, 48, 70, .06) 45px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 44px,
      rgba(18, 48, 70, .06) 45px
    );
}

/* ==============================================
       PRODUCTS GRID — COMPLETE NEW CSS (with spacing fix)
       ============================================== */

    .products-overview {
        padding: 80px 0;
        background: var(--bg-light, #f8f9fa);
    }

    /* ---- Section Head ---- */
    .products-section-head {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 60px;
    }

    .products-section-head .col-50 {
        flex: 1 1 calc(50% - 20px);
        min-width: 280px;
    }

    .products-section-head .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #16b8e8;
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .products-section-head .section-title {
      font-size: 45px;
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.12;
      color: var(--text-dark, #1a1a2e);
	  margin-bottom: 35px;        
    }

    .products-section-head .section-sub {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
	  text-align: justify;
	  margin-bottom: 20px; 
    }

    .products-section-head .section-divider {
        width: 60px;
        height: 3px;
        background: var(--accent, #0b91c2);
        border: 0;
        margin: 0;
    }

    /* ---- Products Grid ---- */
    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    /* ---- Product Card ---- */
    .product-card {
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
    }

    /* ---- Card Image ---- */
    .product-card-image {
        width: 100%;
        height: 220px;
        overflow: hidden;
        background: #e9ecef;
        flex-shrink: 0;
        position: relative;
    }

    .product-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-card-image img {
        transform: scale(1.04);
    }

    /* ---- Card Content ---- */
    .product-card-content {
        padding: 28px 30px 32px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .product-card-content .product-category {
        font-size: 12px;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--accent, #0b91c2);
        font-weight: 600;
        margin-bottom: 6px;
        display: block;
    }

    .product-card-content h3 {
        font-size: 23px;
        font-weight: 700;
        color: var(--text-dark, #1a1a2e);
        margin: 0 0 4px 0;
        line-height: 1.2;
		margin-bottom: 25px;
		margin-top: 12px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
    }

    /* --- Fix spacing between <p> and <ul> --- */
    .product-card-content p {
        font-size: 15px;
        line-height: 1.6;
        color: var(--text-muted, #555);
        margin: 0 0 8px 0;          /* reduced from 16px to 8px */
        flex: 0 0 auto;
		margin-bottom: 20px;
		text-align: justify;
    }

    .product-card-content ul {
        list-style: none;
        padding: 0;
        margin: 4px 0 0 0;          /* small top margin to separate from p */
        display: flex;
        flex-wrap: wrap;
        gap: 4px 18px;
    }

    .product-card-content ul li {
        font-size: 14px;
        color: var(--text-dark, #1a1a2e);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .product-card-content ul li i {
        color: var(--accent, #0b91c2);
        font-size: 13px;
        width: 16px;
        text-align: center;
        flex-shrink: 0;
    }
	
	/* ============================================================
   QUALITY CERTIFICATION — COMPLETE NEW CSS
   (background + overlay + white fonts)
   ============================================================ */

	.quality-certification {
		color: #fff;
		overflow: hidden;
		position: relative;
		background-image: url('wp-include/css/images/icons/dotted-map.html');
		background-size: cover;
		background-position: center;
		background-blend-mode: overlay;
		padding: 80px 0;
		/* override inline background-color */
		background-color: transparent !important;
	}

	.quality-certification::before {
		content: "";
		position: absolute;
		inset: 0;
		background: rgba(7, 26, 40, 0.9);
		z-index: 1;
	}

	/* Ensure all direct children are above the overlay */
	.quality-certification .container {
		position: relative;
		z-index: 2;
	}

	/* ---- Section Head ---- */
	.quality-certification-head {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		margin-bottom: 60px;
	}

	.quality-certification-head .col-50 {
		flex: 1 1 calc(50% - 20px);
		min-width: 280px;
	}

	.quality-certification-head .eyebrow {
		  display: inline-flex;
		  align-items: center;
		  gap: 12px;
		  color: #16b8e8;
		  font-size: 0.7rem;
		  font-weight: 700;
		  letter-spacing: 0.2em;
		  text-transform: uppercase;
		  margin-bottom: 20px;
	}

	.quality-certification-head .section-title {
		  font-size: 45px;
		  font-weight: 700;
		  letter-spacing: -0.03em;
		  line-height: 1.12;
		  color: #fff !important;
		  margin-bottom: 35px;
	}

	.quality-certification-head .section-sub {
		  color: #fff;
		  font-size: 16px;
		  line-height: 1.7;
		  text-align: justify;
		  margin-bottom: 20px;
	}

	.quality-certification-head .section-divider {
		width: 60px;
		height: 3px;
		background: #0b91c2;
		border: 0;
		margin: 0;
	}

	/* ---- Grid ---- */
	.quality-certification-grid {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}

	/* ---- Card ---- */
	.quality-certification-card {
		background: rgba(255, 255, 255, 0.08);
		backdrop-filter: blur(2px);
		-webkit-backdrop-filter: blur(2px);
		border-radius: 16px;
		padding: 40px 28px 36px;
		text-align: center;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
		transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
		display: flex;
		flex-direction: column;
		align-items: center;
		border: 1px solid rgba(255, 255, 255, 0.06);
	}

	.quality-certification-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
		background: rgba(255, 255, 255, 0.15);
	}

	/* ---- Icon ---- */
	.quality-certification-icon {
		width: 72px;
		height: 72px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.12);
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;
		transition: background 0.3s ease;
	}

	.quality-certification-card:hover .quality-certification-icon {
		background: #0b91c2;
	}

	.quality-certification-icon i {
		font-size: 32px;
		color: #0b91c2;
		transition: color 0.3s ease;
	}

	.quality-certification-card:hover .quality-certification-icon i {
		color: #fff;
	}

	/* ---- Title & Text ---- */
	.quality-certification-card h3 {
		font-size: 20px;
		font-weight: 700;
		color: #fff;
		margin: 0 0 12px 0;
	}

	.quality-certification-card p {
		font-size: 15px;
		line-height: 1.6;
		color: rgba(255, 255, 255, 0.85);
		margin: 0;
	}

	
	
	
	
	
	
	
	

    /* ============================================
       FOOTER
       ============================================ */
    .footer {
  background: #04111b;
  color: #aebbc3;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.3fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.footer h4::after {
  content: "";
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--cyan);
  border-radius: 4px;
  margin-top: 8px;
}

.footer li {
  margin-top: 13px;
  color: #fff;
  transition: var(--transition);
}

.footer li a:hover {
  color: var(--cyan);
}

.footer .footer-col:first-child img {
  max-width: 230px;
  margin-bottom: 20px;
  filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(0%) hue-rotate(180deg) brightness(105%) contrast(101%);
}

/* Gold on hover */
.footer .footer-col:first-child img:hover {
  filter: brightness(0) saturate(100%) invert(74%) sepia(51%) saturate(676%) hue-rotate(357deg) brightness(97%) contrast(92%);
  transition: 0.3s ease;
}

.footer .footer-col:first-child p {
  font-size: 15px;
  color: #fff;
  line-height: 1.8;
  text-align: justify;
}

.contact-info li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: #fff;
}

.contact-info i {
  color: var(--cyan);
  width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info a {
  color: #fff;
}

.contact-info a:hover {
  color: var(--cyan);
}

.down-footer {
  margin-top: 50px;
}

.down-footer .col-50 {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  text-align: center;
}

.down-footer .contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.down-footer .contact-info li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

.down-footer .brand-carousel {
  display: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: #ddd;
}

.footer-bottom span {
  color: var(--cyan);
}

    /* ============================================
       BACK TO TOP
       ============================================ */
    .back-top {
      position: fixed;
      right: 28px;
      bottom: 28px;
      width: 50px;
      height: 50px;
      border: none;
      border-radius: 10%;
      background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
      color: #fff;
      display: grid;
      place-items: center;
      opacity: 0;
      pointer-events: none;
      transform: translateY(12px) scale(0.9);
      transition: var(--transition);
      z-index: 900;
      cursor: pointer;
      box-shadow: 0 8px 30px rgba(22, 184, 232, 0.3);
    }

    .back-top.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0) scale(1);
    }

    .back-top:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 12px 40px rgba(22, 184, 232, 0.4);
    }

    /* ============================================
       TOAST
       ============================================ */
    .toast {
      position: fixed;
      left: 50%;
      bottom: 30px;
      transform: translate(-50%, 24px) scale(0.95);
      background: var(--ink);
      color: #fff;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
      z-index: 1500;
      font-size: 0.9rem;
      font-weight: 500;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    }

    .toast.show {
      opacity: 1;
      transform: translate(-50%, 0) scale(1);
    }

    .nav-menu a:focus-visible,
    .menu-toggle:focus-visible,
    .hero-btn:focus-visible,
    .btn:focus-visible,
    .form-group button:focus-visible,
    .back-top:focus-visible {
      outline: 3px solid rgba(22, 184, 232, 0.45);
      outline-offset: 3px;
    }

    /* ============================================
       RESPONSIVE
       ============================================ */
    /* ===========================
   Tablets & Small Laptops
=========================== */
@media (max-width: 1024px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu {
	position: fixed;
	top: 80px;
	left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	display: none;
	flex-direction: column;
	gap: 0;
	padding: 16px 24px 24px;
	border: none;
	outline: none;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	max-height: calc(100vh - 80px);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	}

	.nav-menu.open {
	display: flex;
	}

	.nav-menu a {
	display: block;
	width: 100%;
	padding: 16px 14px;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4;
	border: none;
	outline: none;
	box-shadow: none;
	border-radius: 8px;
	-webkit-tap-highlight-color: transparent;
	}

  .nav-menu a::after {
    display: none;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--cyan-2);
  }

  .section-head {
    flex-direction: column;
    gap: 24px;
  }

  .section-head .col-50 {
    flex: 1 1 100%;
    min-width: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .down-footer .contact-info {
    flex-direction: column;
    gap: 0px;
  }

  .why-choose .images-col {
    grid-template-columns: 1fr;
  }

  .why-choose .images-col .img-small {
    margin-bottom: 0;
    aspect-ratio: 4 / 3;
	bottom: 5px;
    width: 70%;
    height: 170px;
	right: 51px;
  }

  .why-choose .images-col > img:first-child {
	width: 100%;
    height: 320px;
  }
  
  .why-choose .col-50:last-child {
    padding-left: 0;
  }

  .about-section .col-50:first-child {
    padding-right: 0;
  }

  .about-section ul {
    grid-template-columns: 1fr;
  }
  
   .products-overview {
            padding: 60px 0;
        }

        .products-section-head {
            gap: 30px;
            margin-bottom: 44px;
        }

        .products-section-head .col-50 {
            flex: 1 1 100%;
            min-width: 0;
        }

        .products-section-head .section-title {
            font-size: 30px;
        }

        .products-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .product-card-image {
            height: 190px;
        }

        .product-card-content {
            padding: 22px 24px 26px;
        }

        .product-card-content h3 {
            font-size: 20px;
        }

        .product-card-content p {
            font-size: 14px;
            margin-bottom: 6px;
        }

        .product-card-content ul {
            gap: 4px 14px;
        }

        .product-card-content ul li {
            font-size: 13px;
        }
		
		.quality-certification {
        padding: 60px 0;
    }

    .quality-certification-head {
        gap: 30px;
        margin-bottom: 44px;
    }

    .quality-certification-head .col-50 {
        flex: 1 1 100%;
        min-width: 0;
    }

    .quality-certification-head .section-title {
        font-size: 30px;
    }

    .quality-certification-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .quality-certification-card {
        padding: 32px 20px 28px;
    }

    .quality-certification-icon {
        width: 64px;
        height: 64px;
    }

    .quality-certification-icon i {
        font-size: 28px;
    }

    .quality-certification-card h3 {
        font-size: 18px;
    }

    .quality-certification-card p {
        font-size: 14px;
    }
  
  .sustainability-intro {
        padding: 80px 0;
      }

      .sustainability-intro-layout {
        gap: 45px;
      }

      .sustainability-intro-content h2 {
        font-size: 36px;
      }

      .sustainability-intro-image img {
        height: 410px;
      }

      .sustainability-principles {
        padding: 75px 0;
      }

      .sustainability-principles-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .sustainability-hseq {
        padding: 80px 0;
      }

      .sustainability-hseq-item,
      .sustainability-hseq-item.reverse {
        gap: 45px;
      }

      .sustainability-hseq-item + .sustainability-hseq-item {
        margin-top: 70px;
        padding-top: 70px;
      }

      .sustainability-hseq-image img {
        height: 390px;
      }

      .sustainability-hseq-content h2 {
        font-size: 33px;
      }

      .sustainability-commitment {
        padding: 80px 0;
      }

      .sustainability-commitment-grid {
        grid-template-columns: repeat(2, 1fr);
      }
	  
	   .contact-information {
        padding: 75px 0;
      }

      .contact-information-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .contact-main {
        padding: 80px 0;
      }

      .contact-main-layout {
        gap: 45px;
      }

      .contact-office-box {
        padding: 28px;
      }

      .contact-location {
        padding: 80px 0;
      }

      .contact-final-cta-box {
        padding: 45px;
      }
	  
	  .about-overview-layout {
        grid-template-columns: 1fr;
        gap: 45px;
      }

      .about-overview-sidebar {
        width: 100%;
      }

      .about-overview-images {
        grid-template-columns: 1fr 1fr;
      }

}


/* ===========================
   Mobile Devices
=========================== */
	@media (max-width: 768px) {

  section {
    padding: 55px 0 !important;
  }

  h1 {
    font-size: 22px !important;
    font-weight: 700;
    text-align: center !important;
  }

  .section-title {
    margin-bottom: 0;
    text-align: center !important;
    font-size: 22px !important;
    font-weight: 700;
  }

  .container {
    width: min(calc(95% - 28px), 1220px);
  }

  .logo img {
    max-height: 60px;
  }

  .nav-bar {
    min-height: 75px;
  }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
    gap: 0;
    top: 75px;
    max-height: calc(100vh - 75px);
    padding: 12px 16px 20px;
    border: none !important;
    border-top: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }

  .nav-menu a {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    font-size: 14px !important;
    font-weight: 500;
    line-height: 1.45;
    border: none !important;
    border-top: none !important;
    border-right: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 8px;
    -webkit-tap-highlight-color: transparent;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
    margin-top: -10px;
    align-items: flex-start;
  }

  .hero .container {
    width: min(calc(100% - 28px), 375px);
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(3, 16, 25, 0.95) 0%,
      rgba(3, 16, 25, 0.75) 60%,
      rgba(3, 16, 25, 0.95) 100%
    );
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    align-items: center;
  }

  .hero-content {
    max-width: 100%;
    text-align: left;
  }

  .eyebrow {
    font-size: 9px !important;
    gap: 9px;
    margin-bottom: 22px !important;
  }

  .eyebrow::before {
    width: 15px;
  }

  .hero-content h1 {
    font-size: 25px !important;
	font-family: 'Arial Black', 'Montserrat', sans-serif;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    font-weight: bold;
    text-align: center;
  }

  .hero-content p {
    font-size: 15px !important;
    line-height: 1.7;
    margin-bottom: 28px;
    text-align: justify;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 11px;
  }

  .hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .hero-feature {
    width: 100%;
    margin-left: 0;
    top: 0;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    gap: 14px;
  }

  .hero-feature i {
    font-size: 1.2rem;
    margin-top: 3px;
  }

  .hero-feature h4 {
    font-size: 17px;
  }

  .hero-feature p {
    font-size: 10px !important;
    line-height: 1.5;
    text-align: left;
    margin-top: 4px;
  }
  
  .breadcrumb-page-hero-content h1 {
    color: #fff;
    font-size: 22px !important;
    margin-bottom: 18px;
	}

  .about-overview {
    padding: 60px 0 !important;
  }

  .about-overview-main h1 {
    font-size: 22px !important;
    text-align: center !important;
  }

  .about-overview-main > p {
    font-size: 15px !important;
    line-height: 1.7;
    text-align: justify;
  }

  .about-overview-images {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 28px;
  }

  .about-overview-image {
    height: 235px;
  }

  .about-benefits {
    margin-top: 30px;
  }

  .about-benefits h2 {
    font-size: 22px !important;
    text-align: center;
  }

  .about-benefits-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-benefits-grid li {
    font-size: 14px !important;
    margin-bottom: 10px;
  }

  .company-detail h4 {
    font-size: 17px;
  }

  .company-detail p {
    font-size: 15px !important;
  }
  
  .company-overview h4 {
	font-size: 18px !important;
  }

  .about-help-box {
    margin-top: 30px;
  }

  .services-cta-box {
    padding: 45px 35px;
  }

  .services-cta-box .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
    margin: 0 40px;
  }

  .services-cta-content {
    text-align: left;
  }

  .services-cta-content h2 {
    text-align: center;
    font-size: 18px !important;
  }

  .services-cta-content p {
    text-align: center;
    font-size: 13px !important;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
  
  .why-approach .images-col {
		position: relative;
		display: block;
		width: 100%;
		height: 365px;
}
  
  .why-approach .images-col > img:first-child {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 300px;
		display: block;
		object-fit: cover;
		object-position: center;
		border-radius: 0;
		box-shadow: var(--shadow);
		z-index: 1;
	}
	
	.why-approach .images-col .img-small {
		position: absolute;
	    right: 70px !important;
		bottom: 5px !important;
		width: 58%;
		height: 150px;
		display: block;
		object-fit: cover;
		object-position: center;
		border-radius: 0;
		border: 6px solid var(--soft);
		margin: 0;
		box-shadow: var(--shadow);
		z-index: 2;
	}
	
	.why-approach .col-50:last-child {
		padding-left: 0 !important;
	}
	
	.section-divider {
		margin-top: 30px;
		border-top: 2px solid #0b91c2;
		width: 90px;
	}

  .stats {
    padding: 40px 12px;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    padding: 20px 6px;
    text-align: center;
    border-radius: 10px;
  }

  .stat-item .number {
    font-size: 16px;
  }

  .stat-item .label {
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.2;
  }

  .row {
    gap: 32px;
  }

  .col-33,
  .col-40,
  .col-50,
  .col-60 {
    flex: 1 1 100%;
    min-width: 0;
  }

  .products-overview {
    padding: 44px 0;
  }

  .products-section-head {
    gap: 20px;
    margin-bottom: 32px;
  }

  .products-section-head .section-title {
    font-size: 22px;
  }

  .products-section-head .section-sub {
    font-size: 15px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-card-image {
    height: 180px;
  }

  .product-card-content {
    padding: 18px 20px 24px;
  }

  .product-card-content .product-category {
    font-size: 11px;
  }

  .product-card-content h3 {
    font-size: 18px;
  }

  .product-card-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .product-card-content ul {
    gap: 4px 12px;
    margin-top: 2px;
  }

  .product-card-content ul li {
    font-size: 13px;
  }

  .product-card-content ul li i {
    font-size: 12px;
    width: 14px;
  }

  .product-card:hover {
    transform: translateY(-3px);
  }

  .product-card:hover .product-card-image img {
    transform: scale(1.02);
  }

  .quality-certification {
    padding: 44px 0;
  }

  .quality-certification-head {
    gap: 20px;
    margin-bottom: 32px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .quality-certification-head .col-50 {
    flex: 1 1 100%;
    min-width: 0;
    text-align: left !important;
  }

  .quality-certification-head .eyebrow {
    text-align: left !important;
  }

  .quality-certification-head .section-title {
    font-size: 22px !important;
    margin: 0 0 0 40px;
  }

  .quality-certification-head .section-sub {
    font-size: 15px;
  }

  .quality-certification-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .quality-certification-card {
    padding: 28px 18px 24px;
    border-radius: 12px;
  }

  .quality-certification-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .quality-certification-icon i {
    font-size: 24px;
  }

  .quality-certification-card h3 {
    font-size: 18px;
  }

  .quality-certification-card p {
    font-size: 14px;
  }

  .quality-certification-card:hover {
    transform: translateY(-4px);
  }

  .sustainability-intro {
    padding: 60px 0;
  }

  .sustainability-intro-layout {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }

  .sustainability-intro-content,
  .sustainability-intro-image {
    width: 100%;
  }

  .sustainability-intro-content {
    justify-content: flex-start;
    text-align: left;
  }

  .sustainability-intro-content .eyebrow {
    justify-content: center;
  }

  .sustainability-intro-content h2 {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }

  .sustainability-intro-content > p {
    font-size: 14px !important;
    line-height: 1.7;
    text-align: justify;
  }

  .sustainability-intro-image::before {
    top: 15px;
    left: -10px;
  }

  .sustainability-intro-image img {
    height: 285px;
  }

  .sustainability-quote {
    left: 15px;
    bottom: -27px;
    width: calc(100% - 30px);
    padding: 9px 10px;
}

  .sustainability-quote p {
    font-size: 12px !important;
    line-height: 1.6;
  }

  .sustainability-principles {
    padding: 60px 0;
  }

  .sustainability-section-head {
    flex-direction: column;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .sustainability-section-head .section-head {
    display: block;
    text-align: left !important;
  }

  .sustainability-principles-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sustainability-principle {
    min-height: auto;
    padding: 24px 21px;
  }

  .sustainability-hseq {
    padding: 60px 0;
  }

  .sustainability-hseq-item,
  .sustainability-hseq-item.reverse {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: stretch;
  }

  .sustainability-hseq-item + .sustainability-hseq-item {
    margin-top: 60px;
    padding-top: 60px;
  }

  .sustainability-hseq-image,
  .sustainability-hseq-content {
    width: 100%;
  }

  .sustainability-hseq-image img {
    height: 285px;
  }

  .sustainability-hseq-image::after {
    right: -8px;
    bottom: -8px;
  }

  .sustainability-hseq-content {
    padding: 0;
  }

  .sustainability-hseq-content .eyebrow {
    justify-content: center;
  }

  .sustainability-hseq-content h2 {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }

  .sustainability-hseq-content p {
    font-size: 14px !important;
    line-height: 1.7;
    text-align: justify;
  }

  .sustainability-hseq-content .hseq-highlight {
    margin-top: 20px;
    padding: 16px;
  }

  .sustainability-hseq-content .hseq-highlight span {
    font-size: 12px;
  }

  .sustainability-commitment {
    padding: 60px 0;
  }

  .sustainability-commitment-head {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 70px !important;
  }

  .sustainability-commitment-head .eyebrow {
    justify-content: center;
  }

  .sustainability-commitment-head h2 {
    font-size: 22px;
    line-height: 1.2;
    text-align: center;
  }

  .sustainability-commitment-head p {
    font-size: 14px !important;
    line-height: 1.7;
    text-align: justify;
  }

  .sustainability-commitment-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sustainability-commitment-card {
    padding: 25px 22px;
  }

  .smart-card p {
    text-align: justify !important;
  }
  
  .contact-information {
        padding: 60px 0;
      }

      .contact-section-head {
        flex-direction: column;
		align-items: flex-start !important;
		text-align: left !important;
      }

      .contact-section-head .section-head {
        display: block;
      }

      .contact-information-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .contact-info-card {
        min-height: auto;
        padding: 24px 21px;
		text-align: center;
      }

	.contact-info-icon {
		width: 40px;
		height: 40px;
		display: grid;
		place-items: center;
		margin-bottom: 20px !important;
		border-radius: 14px;
		background: rgba(22, 184, 232, .09);
		color: var(--cyan-2);
		font-size: 14px;
		margin: 0 auto;
	}

      .contact-main {
        padding: 60px 0;
      }

      .contact-main-layout {
        display: flex;
        flex-direction: column;
        gap: 45px;
      }

      .contact-form-panel,
      .contact-office-panel {
        width: 100%;
      }

      .contact-form-panel h2,
      .contact-office-panel h2 {
        font-size: 22px;
        line-height: 1.2;
      }

      .contact-form-panel > p,
      .contact-office-panel > p {
        font-size: 13px !important;
        line-height: 1.7;
        text-align: justify;
      }

      .contact-form {
        grid-template-columns: 1fr;
        gap: 15px;
      }

      .contact-form .form-field.full,
      .contact-form .form-submit {
        grid-column: auto;
      }

      .contact-office-box {
        padding: 25px 21px;
        border-radius: 16px;
      }

      .contact-office-box h3 {
        font-size: 18px;
      }
	  
      .contact-location {
        padding: 60px 0;
      }

      .contact-location-head {
        margin-bottom: 30px;
        text-align: center;
      }

      .contact-location-head .eyebrow {
        justify-content: center;
      }

      .contact-location-head h2 {
        font-size: 22px;
        line-height: 1.2;
      }

      .contact-location-head p {
        font-size: 13px !important;
        line-height: 1.7;
        text-align: justify;
      }

      .contact-map {
        min-height: 330px;
      }

      .map-location-card {
        padding: 25px 20px;
      }


      .contact-final-cta {
        padding: 0 0 60px;
      }

      .contact-final-cta-box {
        padding: 35px 24px;
        border-radius: 16px;
      }

      .contact-final-cta-content h2 {
        font-size: 22px;
        line-height: 1.2;
      }

      .contact-final-cta-content p {
        font-size: 13px !important;
        line-height: 1.7;
        text-align: justify;
      }
   
	   

	  .footer {
		padding: 60px 0 20px;
	  }

	  .footer-grid {
		grid-template-columns: 1fr;
		gap: 35px;
	  }

	  .footer .footer-col:first-child p {
		text-align: justify;
	  }
	  
	  .footer .footer-col:first-child img {
		display: block;
		margin: 0 auto;
		margin-bottom: 15px;
		max-width: 180px;
	   }

		.down-footer {
			margin-top: 22px;
			text-align: center;
		}

		.down-footer .contact-info {
			display: flex;
			flex-direction: column;
			align-items: center;
		}

	   .down-footer .contact-info li {
			justify-content: center;
			text-align: center;
		}

	  .footer-bottom {
		margin-top: 35px;
		font-size: 10px;
	  }

	  .brand-carousel {
		justify-content: center;
		gap: 20px;
	  }
	  
	  .why-choose .images-col {
		height: 400px !important;
	  }

	   .brand-carousel img {
			width: 350px !important;
			max-width: none !important;
			height: auto;
	   }
	   
	   .brands .col-50:first-child h2 {
			font-size: 20px !important;
			text-align: center !important;
		}
	   
	   .newsletter-modern {
			padding: 50px 20px;
			background-position: center;
		}

		.newsletter-wrapper {
			flex-direction: column;
			align-items: stretch;
			gap: 32px;
			text-align: center;
		}

		.newsletter-content,
		.newsletter-form-modern {
			flex: 1 1 100%;
			width: 100%;
		}

		.newsletter-badge {
			margin-bottom: 12px;
			padding: 6px 14px;
			font-size: 0.65rem;
		}

		.newsletter-content h2 {
			font-size: 20px;
			line-height: 1.3;
			margin-top: 15px;
			margin-bottom: 12px;
		}

		.newsletter-content p {
			font-size: 13px;
			line-height: 1.6;
			margin: 0 auto;
			max-width: 500px;
		}

		.newsletter-form-modern {
			width: 100%;
		}

		.form-group {
			flex-direction: column;
			gap: 12px;
			background: transparent;
			padding: 0;
			border: none;
			border-radius: 20px;
		}

		.form-group input {
			width: 100%;
			padding: 14px 24px;
			text-align: center;
			font-size: 0.9rem;
			background: rgba(255, 255, 255, 0.06);
			border-radius: 60px;
			border: 1px solid rgba(255, 255, 255, 0.08);
		}

		.form-group button {
			justify-content: center;
			padding: 14px 28px;
			width: 100%;
		}

		.form-note {
			padding-left: 0;
			margin-top: 10px;
			font-size: 0.7rem;
			text-align: center;
		}

	  .about-image::before {
			display: none;
	    }

	  .sustainability .col-50:first-child p {
			max-width: 100%;
	    }

	  .stat-item {
			padding: 24px 16px;
	    }

	  .smart-card {
			padding: 24px 20px;
		}

	  .back-top {
			right: 20px;
			bottom: 20px;
			width: 54px;
			height: 54px;
		}
	  }


