* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Verdana, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
}

p {
	text-align: justify;
	margin-top: 14px;
	margin-bottom: 10px;
}

.align {
	text-align: center;
}

.colorx {
	color: #d4af37;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================
   LINE STYLES FOR SECTION-TAG
========================= */
.section-tag.line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag.line::before {
  content: '';
  width: 60px;
  height: 2px;
  background: #d4af37;
  display: inline-block;
}

.section-tag.center.line {
  justify-content: center;
}

.section-tag.center.line::after,
.section-tag.center.line::before {
  content: '';
  width: 60px;
  height: 2px;
  background: #d4af37;
  display: inline-block;
}

.section-tag.center.line::before {
  margin-right: 12px;
}

.section-tag.center.line::after {
  margin-left: 12px;
}

/* =========================
   HEADER - Mobile Responsive
========================= */
.header {
  background: #0c2f57;
  padding: 15px 0;
  position: relative;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-img {
  height: 63px;
  width: auto;
  display: block;
  filter: brightness(1.1) contrast(1.1);
  transition: filter 0.3s ease;
}

.logo-mark {
  height: 65px;
  width: auto;
  display: block;
  filter: brightness(1.1) contrast(1.1);
  transition: filter 0.3s ease;
}

/* Navigation */
.nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

.btn-primary {
  background: #d4af37;
  color: #111;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: #e8c84a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* =========================
   HERO
========================= */
.hero {
            min-height: 86vh;
            height: auto;
            padding: 45px 0 60px;
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            /* ← needed for video positioning */;
        }

        /* ----- VIDEO BACKGROUND ----- */
        .hero-video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* covers the entire hero area */
            z-index: 0;
        }

        /* ----- OVERLAY (darkens video for readability) ----- */
        .overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 18, 35, 0.75);
            z-index: 1;
        }

        /* ----- CONTENT (sits above overlay) ----- */
        .hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        /* ----- TAGLINE ----- */
        .tagline {
            color: #d4af37;
            font-size: 12px;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .tagline.line {
            display: flex;
            align-items: center;
            gap: 12px;
			margin-bottom: 40px;
        }

        .tagline.line::before {
            content: '';
            width: 60px;
            height: 2px;
            background: #d4af37;
            display: inline-block;
        }

        /* ----- HEADINGS ----- */
        .hero h1 {
            font-size: 45px;
            line-height: 1.2;
            max-width: 800px;
        }

        .hero h1 span {
            color: #d4af37;
            font-style: italic;
        }

        .description {
            margin-top: 20px;
            max-width: 700px;
            color: #cbd5e1;
            font-size: 18px;
            line-height: 1.8;
            text-align: left;
        }

        /* ----- BUTTONS ----- */
        .hero-buttons {
		  margin-top: 25px;
		  display: flex;
		  gap: 15px;
		  flex-wrap: wrap;
		}

		.btn-gold {
		  background: #d4af37;
		  color: #111;
		  padding: 12px 24px;
		  border-radius: 6px;
		  text-decoration: none;
		  font-weight: 600;
		  transition: all 0.3s ease;
		  display: inline-flex;
		  align-items: center;
		  gap: 10px;
		}

		.btn-gold:hover {
		  background: #e8c84a;
		  transform: translateY(-2px);
		  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
		}

		.btn-outline {
		  border: 1px solid #d4af37;
		  padding: 12px 24px;
		  border-radius: 6px;
		  color: #fff;
		  text-decoration: none;
		  transition: all 0.3s ease;
		}

		.btn-outline:hover {
		  background: rgba(255, 255, 255, 0.1);
		  transform: translateY(-2px);
		}

		/* HERO FEATURES */
		.hero-features {
		  margin-top: 40px;
		  display: flex;
		  gap: 30px;
		  flex-wrap: wrap;
		  font-size: 13px;
		  color: #cbd5e1;
		}

		.hero-features i {
		  color: #d4af37;
		  margin-right: 6px;
		}

        /* ----- FEATURES ----- */
        .hero-features {
            margin-top: 40px;
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 13px;
            color: #cbd5e1;
        }

        .hero-features i {
            color: #d4af37;
            margin-right: 6px;
        }


/* =========================
   SERVICES - 4 columns desktop, 2 columns mobile
========================= */
.services {
  background: #fff;
  padding: 100px 0;
  color: #111;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.service-card {
  padding: 20px;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card i {
  font-size: 22px;
  background: #17375f;
  color: #d4af37;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.service-card p {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
}

/* =========================
   SECTION 2 - ABOUT
========================= */
.about {
  padding: 100px 0;
  background: #f7f8fb;
  color: #17375f;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 4vw, 40px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-text h2 span {
  color: #d4af37;
  font-style: italic;
}

.about-text p {
  font-size: clamp(16px, 1vw, 13px);
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 15px;
}

.about-list {
  margin-top: 20px;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  font-size: clamp(16px, 1vw, 13px);
  color: #28466c;
}

.btn-outline-dark {
  display: inline-block;
  margin-top: 25px;
  border: 1px solid #d4af37;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  color: #17375f;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: #17375f;
  color: #fff;
  transform: translateY(-2px);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.02);
}

.experience-badge {
   position: absolute;
  bottom: -25px;
  left: -30px;
  background: #17375f;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: pulse 2s ease-in-out infinite;
}

.experience-badge h3 {
  color: #d4af37;
  font-size: 60px;
}

.experience-badge p {
  color: #fff;
  font-size: 20px;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =========================
   COUNTER STATISTICS SECTION
========================= */
.counter-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0c2f57, #071a33);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  padding: 20px;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.counter-item:nth-child(1) { animation-delay: 0.1s; }
.counter-item:nth-child(2) { animation-delay: 0.2s; }
.counter-item:nth-child(3) { animation-delay: 0.3s; }
.counter-item:nth-child(4) { animation-delay: 0.4s; }

.counter-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 700;
  color: #d4af37;
  display: inline-block;
}

.counter-suffix {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: #d4af37;
}

.counter-item p {
  font-size: clamp(13px, 1vw, 16px);
  color: #cbd5e1;
  margin-top: 8px;
  font-weight: 300;
  letter-spacing: 1px;
}

/* =========================
   SECTION 3 - WHY CHOOSE US
========================= */
.why {
  padding: 100px 0;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(25px, 4vw, 40px);
  margin-bottom: 15px;
  color: #17375f;
  text-align: center;
}

.section-title span {
  color: #d4af37;
  font-style: italic;
}

.section-subtitle {
  max-width: 700px;
  margin: auto;
  font-size: clamp(16px, 1vw, 13px);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 50px;
}

.center {
  text-align: center;
  display: block;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #f7f8fb;
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.why-card:nth-child(1) { animation-delay: 0.1s; }
.why-card:nth-child(2) { animation-delay: 0.2s; }
.why-card:nth-child(3) { animation-delay: 0.3s; }

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-box {
  width: 45px;
  height: 45px;
  background: #17375f;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.why-card:hover .icon-box {
  transform: scale(1.1) rotate(5deg);
}

.why-card h3 {
  font-size: clamp(18px, 1.2vw, 14px);;
  margin-bottom: 10px;
  color: #17375f;
}

.why-card p {
  font-size: clamp(16px, 1vw, 13px);
  color: #6b7280;
  line-height: 1.8;
}

/* CAPABILITIES */
.capabilities {
  padding: 100px 0;
  background: radial-gradient(circle at top, #0c2f57, #071a33);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.capabilities .section-subtitle {
  color: #b8c2d1;
  max-width: 750px;
  margin: auto;
}

.cap-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.cap-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(11px, 0.9vw, 14px);
  color: #d6dde8;
  transition: all 0.3s ease;
}

.cap-card i {
  color: #d4af37;
  font-size: 14px;
}

.cap-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 1px solid #d4af37;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: #d4af37;
  color: #111;
  transform: translateY(-2px);
}

.mt-40 {
  margin-top: 40px;
}

/* WHAT WE DO */
.what-we-do {
  padding: 100px 0;
  background: #f6f8fb;
  text-align: center;
}

.wwd-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wwd-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: left;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.wwd-card:nth-child(1) { animation-delay: 0.1s; }
.wwd-card:nth-child(2) { animation-delay: 0.2s; }
.wwd-card:nth-child(3) { animation-delay: 0.3s; }
.wwd-card:nth-child(4) { animation-delay: 0.4s; }

.wwd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.wwd-card h3 {
  font-size: clamp(18px, 1.2vw, 14px);;
  margin-bottom: 10px;
  color: #17375f;
}

.wwd-card p {
  font-size: clamp(16px, 1vw, 13px);
  color: #6b7280;
  line-height: 1.8;
}

.wwd-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #0d2a4c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}

.wwd-card:hover .wwd-icon {
  transform: scale(1.1) rotate(5deg);
}

.wwd-icon i {
  color: #d4af37;
  font-size: 18px;
}

/* WORKFLOW */
.workflow {
  padding: 100px 0;
  background: #ffffff;
}

.workflow .section-title {
  margin-bottom: 15px;
  text-align: center;
}

.workflow .section-title span {
  color: #d4af37;
  font-style: italic;
}

.workflow .section-subtitle {
  max-width: 650px;
  margin: auto;
  margin-bottom: 55px;
  text-align: center;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.workflow-card {
  background: #f8f9fb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px 26px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.workflow-card p {
    text-align: center;
  }

.workflow-card:nth-child(1) { animation-delay: 0.1s; }
.workflow-card:nth-child(2) { animation-delay: 0.2s; }
.workflow-card:nth-child(3) { animation-delay: 0.3s; }
.workflow-card:nth-child(4) { animation-delay: 0.4s; }

.workflow-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.step-number {
  display: block;
  color: #c7a13b;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.workflow-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #0d2a4c;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}

.workflow-card:hover .workflow-icon {
  transform: scale(1.1) rotate(5deg);
}

.workflow-icon i {
  color: #d4af37;
  font-size: 18px;
}

.workflow-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 1.2vw, 14px);;
  color: #1a2940;
  line-height: 1.35;
  margin-bottom: 14px;
}

.workflow-card p {
  color: #777;
  font-size: clamp(16px, 1vw, 13px);
  line-height: 1.9;
}

/* GLOBAL REACH */
.global-reach {
  padding: 100px 0;
  background: #f8f9fb;
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.global-content .section-title {
  margin-bottom: 25px;
  line-height: 1.15;
  text-align: left;
}

.global-content .section-title span {
  color: #d4af37;
  font-style: italic;
}

.global-text {
  color: #6b7280;
  font-size: clamp(16px, 1vw, 13px);
  line-height: 1.9;
  margin-bottom: 35px;
}

.global-list {
  list-style: none;
}

.global-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  font-size: clamp(16px, 1vw, 13px);
  color: #28466c;
}

.global-list h4 {
  color: #17375f;
  font-size: 19px;
}

.global-list p {
  color: #8b9099;
  font-size: 15px;
  margin-top: 2px !important;
}

.global-note {
  display: block;
  margin-top: 30px;
  color: #9ca3af;
  font-style: italic;
  line-height: 1.6;
}

.global-image {
  position: relative;
}

.global-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,.15);
  transition: transform 0.3s ease;
}

.global-image:hover img {
  transform: scale(1.02);
}

.global-badge {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 60%;
  height: 60%;  
  padding: 20px;
  background: rgba(0,0,0,0.7);
  border-radius: 12px;
  margin-left: 20px;
  margin-right: 20px;
}

.badge-icon {
  width: 72px;
  height: 72px;
  margin: 20px auto 20px;
  background: rgba(212,175,55,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s ease-in-out infinite;
}

.badge-icon i {
  color: #fff;
  font-size: 30px;
}

.global-badge h3 {
  font-size: 65px;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.global-badge span {
  display: block;
  letter-spacing: 2px;
  color: #d4af37;
  font-size: 25px;
  font-weight: bold;
  margin: 6px 0 12px;
  font-style: italic;
  margin-top: 40px;
}

.global-badge p {
  max-width: 220px;
  margin: auto;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  margin-top: 30px;
}

/* CORPORATE */
.corporate {
  background: #fbfbfc;
  padding: 110px 0;
}

.corporate-wrapper {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 90px;
  align-items: center;
}

.corporate-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.corporate-title {
  text-align: left;
  margin-bottom: 30px;
}

.corporate-line {
  width: 60px;
  height: 2px;
  background: #d4af37;
}

.corporate-label {
  font-size: 13px;
  letter-spacing: 5px;
  color: #c89b28;
}

.corporate h2 span {
  color: #d4af37;
  font-style: italic;
}

.corporate p {
  max-width: 620px;
  font-size: clamp(16px, 1vw, 13px);
  line-height: 1.9;
  color: #d4af37;
}

.corporate-checks {
  list-style: none;
  margin-top: 45px;
}

.corporate-checks li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  font-size: clamp(16px, 1vw, 13px);
  color: #28466c;
}

.tick {
  width: 20px;
  height: 20px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d4af37;
  font-size: 13px;
  flex-shrink: 0;
}

.company-card {
  background: #fff;
  border: 1px solid #183b67;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 22px 45px rgba(0,0,0,.08);
  transition: all 0.3s ease;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0,0,0,.12);
}

.company-top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid #183b67;
  margin-bottom: 10px;
}

.company-icon {
  width: 56px;
  height: 56px;
  background: #183b67;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-icon i {
  color: #d4af37;
  font-size: 18px;
}

.company-top small {
  color: #8b9ab1;
  letter-spacing: 2px;
  font-size: 13px;
}

.company-top h3 {
  margin-top: 6px;
  color: #17375f;
  font-size: clamp(18px, 2vw, 25px);
}

.company-row {
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #183b67;
  font-size: clamp(16px, 1vw, 13px);
  color: #28466c;
}

.company-row:last-child {
  border-bottom: none;
}

.company-row strong {
  color: #17375f;
}

/* COMMODITIES */
.commodities {
  padding: 100px 0;
  background: #f6f8fb;
}

.commodities-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.commodity-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.commodity-card:nth-child(1) { animation-delay: 0.1s; }
.commodity-card:nth-child(2) { animation-delay: 0.2s; }
.commodity-card:nth-child(3) { animation-delay: 0.3s; }

.commodity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.commodity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.commodity-card:hover img {
  transform: scale(1.05);
}

.commodity-body {
  padding: 22px;
  text-align: left;
}

.commodity-body i {
  width: 42px;
  height: 42px;
  background: #17375f;
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.commodity-card:hover .commodity-body i {
  transform: scale(1.1) rotate(5deg);
}

.commodity-body h3 {
  font-size: clamp(18px, 1.2vw, 14px);;
  margin-bottom: 10px;
  color: #17375f;
}

.commodity-body p {
  font-size: clamp(16px, 1vw, 13px);
  color: #6b7280;
  line-height: 1.7;
}

/* CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: radial-gradient(circle at top, #0c2f57, #071a33);
}

.cta-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.cta-box h2 {
  font-size: 38px;
  color: #fff;
  line-height: 1.2;
  margin: 18px 0;
}

.cta-box h2 span {
  color: #d4af37;
  font-style: italic;
}

.cta-box p {
  max-width: 720px;
  margin: auto;
  color: #cbd5e1;
  line-height: 1.9;
  font-size: clamp(16px, 1vw, 13px);
}

.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: #d4af37;
  color: #111;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  background: #e8c84a;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* FOOTER */

.footer {
  background: #081223;
  color: #d6dde8;
  padding-top: 90px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 70px;
  padding-bottom: 70px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  color: #fff;
  margin-bottom: 25px;
}

.footer-text {
  color: #9ca3af;
  line-height: 2;
  font-size: 14px; 
  margin-bottom: 25px;
}

.footer-company {
  list-style: none;
}

.footer-company li {
  color: #7b8798;
  margin-bottom: 8px;
  font-size: 14px; 
}

.footer h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 18px; 
  letter-spacing: 1px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 14px;
}

.footer a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer a:hover {
  color: #d4af37;
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 25px 0;
  color: #7b8798;
  font-size: 14px;
}


/* =========================
   BREADCRUMB SECTION
   ========================= */
.breadcrumb-section {
  padding: 80px 0 80px;
  position: relative;
  text-align: center;
  min-height: 240px;
  display: flex;
  align-items: center;
  background: url("/wp-content/images/global-reach-slider.jpg") center/cover no-repeat;
}

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.9);
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  color: #fff;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: clamp(14px, 1vw, 16px);
  color: #cbd5e1;
}

.breadcrumb a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.breadcrumb a:hover {
  color: #e8c84a;
}

.breadcrumb .separator {
  color: #6b7280;
}

.breadcrumb [aria-current="page"] {
  color: #fff;
}

/* =========================
   ABOUT ТОО "A.C.A TRADE"
   ========================= */
.about-company {
  padding: 100px 0;
  background: #f8f9fb;
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-company-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: #17375f;
  margin-bottom: 25px;
}

.about-company-text h2 span {
  color: #d4af37;
  font-style: italic;
}

.about-company-text p {
  font-size: clamp(16px, 1vw, 13px);
  line-height: 1.9;
  color: #4b5563;
  margin-bottom: 18px;
  text-align: justify;
}

.about-company-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: #d4af37;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: clamp(12px, 0.9vw, 14px);
  color: #6b7280;
  margin-top: 5px;
  font-weight: 500;
}

.about-company-image {
  position: relative;
}

.about-company-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.about-company-image:hover img {
  transform: scale(1.02);
}

.company-badge {
   position: absolute;
  bottom: -60px;
  left: -25px;
  background: #17375f;
  padding: 45px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: pulse 2s ease-in-out infinite;
}

.company-badge i {
  font-size: 40px;
  color: #d4af37;
  margin-bottom: 5px;
}

.company-badge h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: -5px;
  margin-top: 5px;
}

.company-badge p {
  color: #cbd5e1;
  font-size: 20px;
}





/* =========================
   COMPANY OVERVIEW
   ========================= */
.company-overview {
  padding: 100px 0;
  background: #ffffff;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.overview-card {
  background: #f8f9fb;
  padding: 30px;
  border-radius: 14px;
  transition: all 0.3s ease;
  text-align: center;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.overview-card:nth-child(1) { animation-delay: 0.1s; }
.overview-card:nth-child(2) { animation-delay: 0.2s; }
.overview-card:nth-child(3) { animation-delay: 0.3s; }
.overview-card:nth-child(4) { animation-delay: 0.4s; }

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.overview-icon {
  width: 56px;
  height: 56px;
  background: #17375f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.overview-card:hover .overview-icon {
  transform: scale(1.1) rotate(5deg);
}

.overview-icon i {
  color: #d4af37;
  font-size: 22px;
}

.overview-card h3 {
  font-size: clamp(18px, 1.2vw, 14px);
  color: #17375f;
  margin-bottom: 12px;
}

.overview-card p {
  font-size: clamp(16px, 1vw, 13px);
  color: #6b7280;
  line-height: 1.8;
  text-align: center;
}

/* =========================
   CORE COMMERCIAL ACTIVITIES
   ========================= */
.core-activities {
  padding: 100px 0;
  background: radial-gradient(circle at top, #0c2f57, #071a33);
  color: #fff;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.activity-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px 25px;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.activity-card:nth-child(1) { animation-delay: 0.1s; }
.activity-card:nth-child(2) { animation-delay: 0.15s; }
.activity-card:nth-child(3) { animation-delay: 0.2s; }
.activity-card:nth-child(4) { animation-delay: 0.25s; }
.activity-card:nth-child(5) { animation-delay: 0.3s; }
.activity-card:nth-child(6) { animation-delay: 0.35s; }

.activity-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-5px);
}

.activity-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 700;
  color: rgba(212,175,55,0.15);
  font-family: "Playfair Display", serif;
}

.activity-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon {
  transform: scale(1.1);
}

.activity-icon i {
  color: #d4af37;
  font-size: 20px;
}

.activity-card h3 {
  font-size: clamp(18px, 1.2vw, 14px);
  color: #fff;
  margin-bottom: 12px;
}

.activity-card p {
  font-size: clamp(16px, 1vw, 13px);
  color: #cbd5e1;
  line-height: 1.8;
}

/* =========================
   MANDATE COMPANY OPERATIONS
   ========================= */
.mandate-operations {
  padding: 100px 0;
  background: #f8f9fb;
}

.operations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.operation-card {
  background: #fff;
  padding: 28px 25px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.operation-card:nth-child(1) { animation-delay: 0.1s; }
.operation-card:nth-child(2) { animation-delay: 0.15s; }
.operation-card:nth-child(3) { animation-delay: 0.2s; }
.operation-card:nth-child(4) { animation-delay: 0.25s; }
.operation-card:nth-child(5) { animation-delay: 0.3s; }
.operation-card:nth-child(6) { animation-delay: 0.35s; }

.operation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.operation-step {
  display: table;
  margin: 0 0 20px auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d4af37;
  background: rgba(212,175,55,0.1);
  padding: 5px 14px;
  border-radius: 20px;
}

.operation-icon {
  width: 48px;
  height: 48px;
  background: #17375f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.operation-card:hover .operation-icon {
  transform: scale(1.1) rotate(5deg);
}

.operation-icon i {
  color: #d4af37;
  font-size: 20px;
}

.operation-card h3 {
  font-size: clamp(18px, 1.2vw, 14px);
  color: #17375f;
  margin-bottom: 12px;
}

.operation-card p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
}

/* =========================
   MANDATE VALUES
   ========================= */
.mandate-values {
  padding: 100px 0;
  background: #ffffff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 35px 20px;
  background: #f8f9fb;
  border-radius: 14px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: #17375f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon i {
  color: #d4af37;
  font-size: 24px;
}

.value-card h3 {
  font-size: clamp(18px, 1.2vw, 14px);
  color: #17375f;
  margin-bottom: 12px;
}

.value-card p {
  font-size: clamp(16px, 1vw, 13px);
  color: #6b7280;
  line-height: 1.8;
  text-align: center;
}

/* =========================
   WHAT WE DO PAGE - ADDITIONAL STYLES
   ========================= */

/* WWD INTRO SECTION */
.wwd-intro {
  padding: 80px 0 60px;
  background: #ffffff;
}

.wwd-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.wwd-intro-item {
  background: #f8f9fb;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.wwd-intro-item:nth-child(1) { animation-delay: 0.05s; }
.wwd-intro-item:nth-child(2) { animation-delay: 0.1s; }
.wwd-intro-item:nth-child(3) { animation-delay: 0.15s; }
.wwd-intro-item:nth-child(4) { animation-delay: 0.2s; }

.wwd-intro-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.wwd-intro-icon {
  width: 60px;
  height: 60px;
  background: #17375f;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.wwd-intro-item:hover .wwd-intro-icon {
  transform: scale(1.1) rotate(5deg);
}

.wwd-intro-icon i {
  color: #d4af37;
  font-size: 24px;
}

.wwd-intro-item h3 {
  font-size: clamp(17px, 1.1vw, 20px);
  color: #17375f;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.wwd-intro-item p {
  font-size: clamp(14px, 0.95vw, 15px);
  color: #6b7280;
  line-height: 1.8;
  text-align: center;
}

/* CORE SERVICES */
.core-services {
  padding: 100px 0;
  background: radial-gradient(circle at top, #0c2f57, #071a33);
}

.core-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.core-service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 35px;
  border-radius: 14px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.core-service-card:nth-child(1) { animation-delay: 0.05s; }
.core-service-card:nth-child(2) { animation-delay: 0.1s; }
.core-service-card:nth-child(3) { animation-delay: 0.15s; }
.core-service-card:nth-child(4) { animation-delay: 0.2s; }
.core-service-card:nth-child(5) { animation-delay: 0.25s; }
.core-service-card:nth-child(6) { animation-delay: 0.3s; }

.core-service-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-5px);
}

.core-service-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: clamp(24px, 2vw, 36px);
  font-weight: 700;
  color: rgba(212,175,55,0.15);
  font-family: "Playfair Display", serif;
}

.core-service-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,175,55,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.core-service-card:hover .core-service-icon {
  transform: scale(1.1);
}

.core-service-icon i {
  color: #d4af37;
  font-size: 20px;
}

.core-service-card h3 {
  font-size: clamp(17px, 1.1vw, 20px);
  color: #fff;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.core-service-card p {
  font-size: clamp(14px, 0.95vw, 15px);
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 16px;
}

.core-service-features {
  list-style: none;
  margin-top: 10px;
}

.core-service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(13px, 0.85vw, 14px);
  color: #b8c2d1;
  margin-bottom: 8px;
}

.core-service-features .tick {
  width: 18px;
  height: 18px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #d4af37;
  font-size: 11px;
  flex-shrink: 0;
}

/* =========================
   HOW WE WORK - 3 COLUMN GRID
   ========================= */
.how-we-work {
  padding: 100px 0;
  background: #f8f9fb;
}

.how-we-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.how-work-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.how-work-card:nth-child(1) { animation-delay: 0.05s; }
.how-work-card:nth-child(2) { animation-delay: 0.1s; }
.how-work-card:nth-child(3) { animation-delay: 0.15s; }
.how-work-card:nth-child(4) { animation-delay: 0.2s; }
.how-work-card:nth-child(5) { animation-delay: 0.25s; }
.how-work-card:nth-child(6) { animation-delay: 0.3s; }

.how-work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.how-work-number {
  display: table;
  margin: 0 0 20px auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d4af37;
  background: rgba(212,175,55,0.1);
  padding: 5px 14px;
  border-radius: 20px;
}

.how-work-icon {
  width: 48px;
  height: 48px;
  background: #17375f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.how-work-card:hover .how-work-icon {
  transform: scale(1.1) rotate(5deg);
}

.how-work-icon i {
  color: #d4af37;
  font-size: 20px;
}

.how-work-card h3 {
  font-size: clamp(17px, 1.1vw, 20px);
  color: #17375f;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.how-work-card p {
  font-size: clamp(14px, 0.95vw, 15px);
  color: #6b7280;
  line-height: 1.8;
}

/* WWD WHY CHOOSE */
.wwd-why-choose {
  padding: 100px 0;
  background: radial-gradient(circle at top, #0c2f57, #071a33);
}

.wwd-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.wwd-why-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.wwd-why-card:nth-child(1) { animation-delay: 0.05s; }
.wwd-why-card:nth-child(2) { animation-delay: 0.1s; }
.wwd-why-card:nth-child(3) { animation-delay: 0.15s; }
.wwd-why-card:nth-child(4) { animation-delay: 0.2s; }
.wwd-why-card:nth-child(5) { animation-delay: 0.25s; }
.wwd-why-card:nth-child(6) { animation-delay: 0.3s; }

.wwd-why-card:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-5px);
}

.wwd-why-icon {
  width: 60px;
  height: 60px;
  background: rgba(212,175,55,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.wwd-why-card:hover .wwd-why-icon {
  transform: scale(1.1) rotate(5deg);
}

.wwd-why-icon i {
  color: #d4af37;
  font-size: 24px;
}

.wwd-why-card h3 {
  font-size: clamp(17px, 1.1vw, 20px);
  color: #fff;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.wwd-why-card p {
  font-size: clamp(14px, 0.95vw, 15px);
  color: #cbd5e1;
  line-height: 1.8;
  text-align: center;
}

/* INDUSTRIES SERVED */
.industries-served {
  padding: 100px 0;
  background: #ffffff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.industry-card {
  background: #f8f9fb;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.industry-card:nth-child(1) { animation-delay: 0.05s; }
.industry-card:nth-child(2) { animation-delay: 0.1s; }
.industry-card:nth-child(3) { animation-delay: 0.15s; }
.industry-card:nth-child(4) { animation-delay: 0.2s; }
.industry-card:nth-child(5) { animation-delay: 0.25s; }
.industry-card:nth-child(6) { animation-delay: 0.3s; }

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.industry-card i {
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.industry-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.industry-card h3 {
  font-size: clamp(17px, 1.1vw, 20px);
  color: #17375f;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.industry-card p {
  font-size: clamp(14px, 0.95vw, 15px);
  color: #6b7280;
  line-height: 1.8;
  text-align: center;
}

/* WWD APPROACH */
.wwd-approach {
  padding: 100px 0;
  background: #f8f9fb;
}

.approach-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.approach-content .section-title {
  text-align: left;
}

.approach-content p {
  font-size: clamp(16px, 1vw, 13px);
  line-height: 1.9;
  color: #4b5563;
  text-align: justify;
}

.approach-list {
  list-style: none;
  margin: 25px 0 35px;
}

.approach-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: clamp(16px, 1vw, 13px);
  color: #28466c;
}

.approach-image {
  position: relative;
}

.approach-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.approach-image:hover img {
  transform: scale(1.02);
}

.approach-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #17375f;
  padding: 20px 25px;
  border-radius: 14px;
  text-align: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  animation: pulse 2s ease-in-out infinite;
}

.approach-badge i {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 5px;
}

.approach-badge h3 {
  font-size: clamp(18px, 1.2vw, 22px);
  margin: 5px 0 3px;
  color: #fff;
}

.approach-badge p {
  font-size: clamp(12px, 0.8vw, 14px);
  color: #cbd5e1;
  margin: 0;
}


/* =========================
   COMMODITIES PAGE - ADDITIONAL STYLES
   ========================= */

/* COMMODITIES INTRO */
.commodities-intro {
  padding: 80px 0 40px;
  background: #ffffff;
}

/* COMMODITIES SHOWCASE */
.commodities-showcase {
  padding: 40px 0 80px;
  background: #f8f9fb;
}

.commodity-category {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.commodity-category:hover {
  transform: translateY(-3px);
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f2f5;
}

.category-icon {
  width: 60px;
  height: 60px;
  background: #17375f;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.commodity-category:hover .category-icon {
  transform: scale(1.05) rotate(3deg);
}

.category-icon i {
  color: #d4af37;
  font-size: 26px;
}

.category-header h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2vw, 28px);
  color: #17375f;
  margin-bottom: 4px;
}

.category-header p {
  font-size: clamp(14px, 0.9vw, 16px);
  color: #6b7280;
  margin: 0;
}

/* Commodity Detail Grid */
.commodity-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.commodity-detail-card {
  background: #f8f9fb;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.commodity-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.commodity-detail-icon {
  width: 50px;
  height: 50px;
  background: rgba(212,175,55,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: transform 0.3s ease;
}

.commodity-detail-card:hover .commodity-detail-icon {
  transform: scale(1.1) rotate(5deg);
}

.commodity-detail-icon i {
  color: #d4af37;
  font-size: 22px;
}

.commodity-detail-card h4 {
  font-size: clamp(16px, 1vw, 18px);
  color: #17375f;
  margin-bottom: 8px;
}

.commodity-detail-card p {
  font-size: clamp(13px, 0.85vw, 14px);
  color: #6b7280;
  margin: 0;
  text-align: center;
}

/* Refined Products Grid */
.refined-grid {
  grid-template-columns: repeat(4, 1fr);
}

.refined-product-card {
  background: #f8f9fb;
  padding: 25px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.refined-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.refined-icon {
  width: 48px;
  height: 48px;
  background: #17375f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.refined-product-card:hover .refined-icon {
  transform: scale(1.1) rotate(5deg);
}

.refined-icon i {
  color: #d4af37;
  font-size: 20px;
}

.refined-product-card h4 {
  font-size: clamp(16px, 1vw, 18px);
  color: #17375f;
  margin-bottom: 8px;
}

.refined-product-card p {
  font-size: clamp(13px, 0.8vw, 14px);
  color: #6b7280;
  margin-bottom: 12px;
  text-align: left;
}

.product-specs {
  list-style: none;
  padding: 0;
}

.product-specs li {
  font-size: clamp(12px, 0.75vw, 13px);
  color: #4b5563;
  padding: 4px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
}

.product-specs li:last-child {
  border-bottom: none;
}

.product-specs span {
  font-weight: 600;
  color: #17375f;
}

/* Gas Products */
.gas-grid {
  grid-template-columns: repeat(2, 1fr);
}

.gas-product-card {
  background: #f8f9fb;
  padding: 30px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.gas-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.gas-icon {
  width: 54px;
  height: 54px;
  background: radial-gradient(circle at 30% 30%, #17375f, #0c2f57);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.gas-product-card:hover .gas-icon {
  transform: scale(1.1) rotate(5deg);
}

.gas-icon i {
  color: #d4af37;
  font-size: 24px;
}

.gas-product-card h4 {
  font-size: clamp(18px, 1.1vw, 20px);
  color: #17375f;
  margin-bottom: 8px;
}

.gas-product-card p {
  font-size: clamp(14px, 0.85vw, 15px);
  color: #6b7280;
  margin-bottom: 15px;
  text-align: left;
}

.gas-specs {
  list-style: none;
  padding: 0;
}

.gas-specs li {
  font-size: clamp(13px, 0.8vw, 14px);
  color: #4b5563;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.gas-specs li i {
  color: #d4af37;
  font-size: 16px;
}

/* Commodity Features */
.commodity-features {
  padding: 100px 0;
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.feature-card {
  background: #f8f9fb;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: #17375f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
  color: #d4af37;
  font-size: 22px;
}

.feature-card h3 {
  font-size: clamp(17px, 1.1vw, 19px);
  color: #17375f;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: clamp(14px, 0.85vw, 15px);
  color: #6b7280;
  margin: 0;
  text-align: center;
}

/* Commodity Process */
.commodity-process {
  padding: 100px 0;
  background: radial-gradient(circle at top, #0c2f57, #071a33);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.process-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-5px);
}

.process-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #d4af37;
  background: rgba(212,175,55,0.15);
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 18px;
}

.process-icon {
  width: 54px;
  height: 54px;
  background: rgba(212,175,55,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.1);
}

.process-icon i {
  color: #d4af37;
  font-size: 22px;
}

.process-content h3 {
  font-size: clamp(17px, 1.1vw, 19px);
  color: #fff;
  margin-bottom: 10px;
}

.process-content p {
  font-size: clamp(14px, 0.85vw, 15px);
  color: #cbd5e1;
  margin: 0;
  text-align: center;
}

/* Quality Standards */
.quality-standards {
  padding: 100px 0;
  background: #071a33;
}


.quality-standards h2 {
  font-size: 38px;
  color: #fff;
  line-height: 1.2;
  margin: 18px 0;
}

.quality-standards h2 span {
  color: #d4af37;
  font-style: italic;
}

.quality-standards p {
  max-width: 720px;
  margin: auto;
  color: #cbd5e1;
  line-height: 1.9;
  font-size: clamp(16px, 1vw, 13px);
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.standard-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.standard-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.standard-card i {
  font-size: 36px;
  color: #d4af37;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.standard-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.standard-card h3 {
  font-size: clamp(17px, 1.1vw, 19px);
  color: #17375f;
  margin-bottom: 10px;
}

.standard-card p {
  font-size: clamp(14px, 0.85vw, 15px);
  color: #6b7280;
  margin: 0;
  text-align: center;
}

/* =========================
   TRADING PAGE - ADDITIONAL STYLES
   ========================= */

/* TRADING INTRO */
.trading-intro {
  padding: 80px 0 40px;
  background: #ffffff;
}

.trading-intro .section-subtitle {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-size: clamp(16px, 1.1vw, 18px);
  color: #4b5563;
  line-height: 1.9;
}

/* =========================
   TRADING PAGE - SIDEBAR LAYOUT
========================= */
.trading-page {
  padding: 80px 0px;
  background: #f8f9fb;
}

.trading-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: flex-start;
}

/* SIDEBAR */
.trading-sidebar {
  position: sticky;
  top: 30px;
}

.trading-sidebar-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.trading-sidebar-box h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 1.5vw, 24px);
  color: #17375f;
  margin-bottom: 25px;
  padding-bottom: 18px;
  border-bottom: 2px solid #f0f2f5;
}

.trading-service-list {
  list-style: none;
  padding: 0;
}

.trading-service-list li {
  margin-bottom: 8px;
}

.trading-service-list li:last-child {
  margin-bottom: 0;
}

.trading-service-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-radius: 10px;
  text-decoration: none;
  color: #4b5563;
  font-size: clamp(14px, 0.9vw, 15px);
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid transparent;
}

.trading-service-list li a i {
  font-size: 14px;
  color: #9ca3af;
  transition: all 0.3s ease;
}

.trading-service-list li a:hover {
  background: rgba(212, 175, 55, 0.06);
  border-color: rgba(212, 175, 55, 0.2);
  color: #17375f;
}

.trading-service-list li a:hover i {
  color: #d4af37;
  transform: translateX(4px);
}

.trading-service-list li.active a {
  background: #17375f;
  border-color: #17375f;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(23, 55, 95, 0.3);
}

.trading-service-list li.active a i {
  color: #d4af37;
}

.trading-service-list li.active a span {
  color: #ffffff;
}

/* CONTENT AREA */
.trading-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 45px 50px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
}

.trading-content .section-tag {
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af37;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trading-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 2.5vw, 34px);
  color: #17375f;
  margin-bottom: 30px;
}

.trading-content-box p {
  font-size: clamp(15px, 0.95vw, 16px);
  color: #4b5563;
  line-height: 1.9;
  margin-bottom: 20px;
  text-align: justify;
}

/* TRADING POINTS */
/* TRADING POINTS */
.trading-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0;
}

.trading-point {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 16px 20px;
  background: #f8f9fb;
  border-radius: 12px;
  border-left: 4px solid #d4af37;
  transition: all 0.3s ease;
}

.trading-point:hover {
  background: #f0f2f5;
  transform: translateX(5px);
}

.point-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 700;
  color: #d4af37;
  line-height: 1.2;
  flex-shrink: 0;
  min-width: 35px;
}

.trading-point div {
  flex: 1;
}

.trading-point h4 {
  font-family: "Playfair Display", serif;
  font-size: clamp(16px, 1vw, 18px);
  color: #17375f;
  margin: 0 0 4px 0;
}

.trading-point p {
  font-size: clamp(14px, 0.9vw, 15px);
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

/* TRADING NOTE */
.trading-note {
  display: flex;
  gap: 16px;
  background: #f0f4f9;
  padding: 20px 25px;
  border-radius: 10px;
  margin-top: 25px;
  align-items: flex-start;
}

.trading-note i {
  color: #d4af37;
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.trading-note p {
  font-size: clamp(14px, 0.85vw, 15px);
  color: #4b5563;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

/* TAB CONTENT HIDING/SHOWING */
.service-tab-content {
  display: none;
  animation: fadeInUp 0.4s ease forwards;
}

.service-tab-content.active {
  display: block;
}

/* =========================
   TRADING MARKETS
========================= */
.trading-markets {
  padding: 100px 0;
  background: #fff;
}

.trading-markets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.trading-market-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.35s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.trading-market-card:nth-child(1) { animation-delay: 0.05s; }
.trading-market-card:nth-child(2) { animation-delay: 0.1s; }
.trading-market-card:nth-child(3) { animation-delay: 0.15s; }
.trading-market-card:nth-child(4) { animation-delay: 0.2s; }
.trading-market-card:nth-child(5) { animation-delay: 0.25s; }
.trading-market-card:nth-child(6) { animation-delay: 0.3s; }

.trading-market-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.market-icon {
  width: 60px;
  height: 60px;
  background: #17375f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.trading-market-card:hover .market-icon {
  transform: scale(1.1) rotate(5deg);
}

.market-icon i {
  color: #d4af37;
  font-size: 26px;
}

.trading-market-card h3 {
  font-size: clamp(18px, 1.2vw, 22px);
  color: #17375f;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.trading-market-card p {
  font-size: clamp(14px, 0.9vw, 15px);
  color: #6b7280;
  line-height: 1.8;
  text-align: center;
}

.market-tag {
  display: inline-block;
  font-size: clamp(12px, 0.75vw, 13px);
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-top: 15px;
  font-weight: 500;
}

/* =========================
   TRADING ADVANTAGES
========================= */
.trading-advantages {
  padding: 100px 0;
  background: #f8f9fb;
}

.trading-advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.trading-advantage-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  text-align: center;
  transition: all 0.35s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.trading-advantage-card:nth-child(1) { animation-delay: 0.05s; }
.trading-advantage-card:nth-child(2) { animation-delay: 0.1s; }
.trading-advantage-card:nth-child(3) { animation-delay: 0.15s; }
.trading-advantage-card:nth-child(4) { animation-delay: 0.2s; }
.trading-advantage-card:nth-child(5) { animation-delay: 0.25s; }
.trading-advantage-card:nth-child(6) { animation-delay: 0.3s; }

.trading-advantage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: #17375f;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.3s ease;
}

.trading-advantage-card:hover .advantage-icon {
  transform: scale(1.1) rotate(5deg);
}

.advantage-icon i {
  color: #d4af37;
  font-size: 22px;
}

.trading-advantage-card h3 {
  font-size: clamp(17px, 1.1vw, 20px);
  color: #17375f;
  margin-bottom: 12px;
  font-family: "Playfair Display", serif;
}

.trading-advantage-card p {
  font-size: clamp(14px, 0.9vw, 15px);
  color: #6b7280;
  line-height: 1.8;
  text-align: center;
}


/* =========================
   CONTACT US PAGE - ADDITIONAL STYLES
   ========================= */

/* CONTACT SECTION */
.contact-section {
  padding: 100px 0;
  background: #f8f9fb;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.contact-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 3vw, 38px);
  color: #17375f;
  margin: 10px 0 15px;
  line-height: 1.2;
}

.contact-title span {
  color: #d4af37;
  font-style: italic;
}

.contact-subtitle {
  font-size: clamp(16px, 1vw, 13px);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 35px;
  text-align: justify;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  color: #17375f;
  font-family: 'Inter', sans-serif;
}

.form-group label .required {
  color: #e74c3c;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  background: #fafbfc;
  color: #17375f;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: #fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  color: #e74c3c;
  font-size: 13px;
  margin-top: 4px;
  display: none;
}

.form-group.error input,
.form-group.error textarea {
  border-color: #e74c3c;
  background: #fff5f5;
}

.form-group.error .error-message {
  display: block;
}

.submit-btn {
  padding: 14px 32px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-success {
  background: #d4edda;
  color: #155724;
  padding: 20px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
  border: 1px solid #c3e6cb;
}

.form-success i {
  font-size: 28px;
  color: #28a745;
}

.form-success p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}

/* Contact Info Sidebar */
.contact-info-wrapper {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  animation-delay: 0.2s;
}

.contact-info-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

.contact-info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2vw, 28px);
  color: #17375f;
  margin-bottom: 12px;
}

.contact-info-card .info-text {
  font-size: clamp(16px, 1vw, 13px);
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 30px;
  text-align: justify;
}

.contact-info-card h3 {
	text-align: center;
}

.info-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f2f5;
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: #17375f;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.info-item:hover .info-icon {
  transform: scale(1.1) rotate(5deg);
}

.info-icon i {
  color: #d4af37;
  font-size: 18px;
}

.info-content h4 {
  font-size: 15px;
  color: #17375f;
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.info-content p {
  font-size: clamp(14px, 0.9vw, 15px);
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  text-align: left;
}

.info-content a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #d4af37;
}

/* Social Links */
.info-social {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid #f0f2f5;
}

.info-social h4 {
  font-size: 15px;
  color: #17375f;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: #f8f9fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #17375f;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-links a:hover {
  background: #17375f;
  color: #d4af37;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(23, 55, 95, 0.15);
}

/* MAP SECTION */
.map-section {
  padding: 0 0 80px 0;
  background: #f8f9fb;
}

.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.map-container {
  width: 100%;
  height: 400px;
  background: radial-gradient(circle at top, #0c2f57, #071a33);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder {
  text-align: center;
  color: #fff;
  padding: 30px;
}

.map-placeholder i {
  font-size: 48px;
  color: #d4af37;
  margin-bottom: 15px;
  display: block;
  animation: pulse 2s ease-in-out infinite;
}

.map-placeholder h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}

.map-placeholder p {
  color: #cbd5e1;
  margin-bottom: 20px;
  text-align: center;
}

.map-placeholder .map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  border: 1px solid #d4af37;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.map-placeholder .map-btn:hover {
  background: #d4af37;
  color: #111;
  transform: translateY(-2px);
}

/* CONTACT CTA */
.contact-cta {
  padding: 80px 0 100px;
  background: #ffffff;
}

.contact-cta .cta-box {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.contact-cta .cta-box h2 {
  font-size: clamp(28px, 4vw, 42px);
  color: #17375f;
  line-height: 1.2;
  margin: 18px 0;
}

.contact-cta .cta-box h2 span {
  color: #d4af37;
  font-style: italic;
}

.contact-cta .cta-box p {
  max-width: 720px;
  margin: auto;
  color: #6b7280;
  line-height: 1.9;
  font-size: clamp(16px, 1vw, 13px);
}

.contact-cta .cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-cta .btn-outline-light {
  border: 1px solid #17375f;
  color: #17375f;
}

.contact-cta .btn-outline-light:hover {
  background: #17375f;
  color: #fff;
}


/* =========================
   ANIMATIONS
========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 35px 30px;
  }

  .contact-info-wrapper {
    order: -1;
  }

  .contact-info-card {
    padding: 30px 25px;
  }

  .trading-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .trading-sidebar {
    position: relative;
    top: 0;
  }

  .trading-sidebar-box {
    padding: 25px 20px;
  }

  .trading-service-list li a {
    padding: 12px 16px;
    font-size: 14px;
  }

  .trading-content {
    padding: 30px 25px;
  }

  .trading-markets-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trading-advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .commodity-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .refined-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwd-intro-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .core-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwd-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
   .how-we-work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-wrapper {
    gap: 40px;
  }

  .overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .operations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  
  .workflow-grid {
    display: flex !important;      /* override grid */
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;              /* optional: keep a readable width */
    margin: 20px auto 0 auto;
    padding-bottom: 15px;
    gap: 0;                        /* remove grid gap */
  }

  .workflow-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    padding: 28px 26px;               /* inner spacing, not margin */
    margin: 0;                     /* reset any default margin */
    border-radius: 18px;           /* keep border radius */
    background: #f8f9fb;              /* ensure background */
  }
  
  .workflow-card h3 {
	margin-bottom: 2px !important;
	font-size: 20px !important;
  }

  /* optional – adjust card inner padding for mobile */
  .workflow-card .workflow-icon {
    margin: 0 auto 18px;           /* keep icons centred */
  }

  .workflow-card .step-number {
    display: inline-block;         /* ensure it behaves inline */
  }

  /* ensure section tag and title stay centered */
  .section-tag.center.line {
    justify-content: center;
  }

  .contact-section {
    padding: 80px 0;
  }

  .contact-form-wrapper {
    padding: 25px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-title {
    font-size: 24px !important;
	text-align: center;
	margin-top: 40px !important;
  }
  
  .form-group {
    gap: 15px;
}

  .contact-subtitle {
    font-size: 15px;
  }

  .info-item {
    padding: 35px 0;
  }

  .info-content p {
    font-size: 14px;
  }

  .map-container {
    height: 300px;
  }

  .map-placeholder h3 {
    font-size: 20px;
  }

  .contact-cta {
    padding: 80px 0;
  }

  .contact-cta .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta .cta-buttons a {
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .contact-info-card {
    text-align: center;
  }

  .info-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .info-content p {
    text-align: center;
  }

  .trading-intro {
    padding: 40px 0 20px;
  }

  .trading-intro .section-subtitle {
    text-align: justify;
    font-size: 15px;
  }

  .trading-page {
    padding: 20px 0 50px;
  }

  .trading-content {
    padding: 25px 18px;
  }

  .trading-content h2 {
    font-size: 24px;
  }

  .trading-point {
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px;
  }

  .point-number {
    min-width: auto;
  }

  .trading-highlight {
    padding: 18px 20px;
  }

  .trading-highlight p {
    text-align: center;
  }

  .trading-note {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 18px;
  }

  .trading-note p {
    text-align: center;
  }

  .trading-service-list li a {
    font-size: 13px;
    padding: 10px 14px;
  }

  .trading-service-list li a span {
    font-size: 13px;
  }

  .trading-markets {
    padding: 80px 0;
  }

  .trading-markets-grid {
    display: flex !important;       /* override grid */
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
    padding-bottom: 15px;
    gap: 0;
  }

  .trading-market-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    padding: 30px;
    margin: 0;
    border-radius: 14px;
    background: #f8f9fb;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }

  .trading-market-card .market-icon {
    margin: 0 auto 18px;           /* center icon */
  }

  .trading-market-card h3 {
    text-align: center;
    color: #17375f;
  }

  .trading-market-card p {
    text-align: center;
    color: #6b7280;
  }

  .trading-market-card .market-tag {
    display: inline-block;
    margin-top: 15px;
    font-size: clamp(12px, 0.75vw, 13px);
    color: #d4af37;
    background: rgba(212,175,55,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 500;
  }

  .trading-market-card p {
    text-align: center;
  }

  .trading-advantages {
    padding: 80px 0;
  }

  .trading-advantages-grid {
    grid-template-columns: 1fr;
  }

  .trading-advantage-card p {
    text-align: center;
  }

  .commodities-intro {
    padding: 50px 0 20px;
  }
  
  .commodities-showcase {
    padding: 20px 0 50px;
  }
  
  .commodity-category {
    padding: 25px 20px;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .category-header p {
    text-align: justify;
	margin-bottom: 15px;
  }
  .category-icon {
    margin-top: 25px !important;
}
  
  .commodity-detail-grid {
    grid-template-columns: 1fr;
  }
  
  .refined-grid {
    grid-template-columns: 1fr;
  }
  
  .gas-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
   .standards-grid {
    display: flex !important;       /* override grid */
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
    padding-bottom: 15px;
    gap: 0;
  }

  .standard-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    padding: 30px 25px;
    margin: 0;
    border-radius: 14px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  }

  .standard-card i {
    font-size: 36px;
    color: #d4af37;
    margin-bottom: 15px;
    display: block;
  }

  .standard-card h3 {
    text-align: center;
    color: #17375f;
  }

  .standard-card p {
    text-align: center;
    color: #6b7280;
    margin: 0;
  }
  
  .product-specs li {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .commodity-features {
    padding: 80px 0;
  }
  
  .commodity-process {
    padding: 80px 0;
  }
  
  .quality-standards {
    padding: 80px 0;
  }

  .wwd-intro {
    padding: 60px 0 30px;
  }

  .wwd-intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wwd-intro-item {
    padding: 25px 20px;
  }

  .wwd-intro-item p {
    text-align: center;
  }

  .core-services {
    padding: 80px 0;
  }

  .core-services-grid {
    display: flex !important;       /* override grid */
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
    padding-bottom: 15px;
    gap: 0;
  }

  .core-service-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    padding: 35px;
    margin: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    position: relative;           /* keep relative for number positioning */
  }

  /* reset the absolute number to relative and center it */
  .core-service-number {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin: 0 auto 10px auto;
    font-size: 24px;
    color: rgba(212,175,55,0.3);   /* keep subtle but visible */
  }

  .core-service-icon {
    margin: 0 auto 18px;           /* center icon */
  }

  .core-service-card h3 {
    text-align: center;
    color: #fff;
  }

  .core-service-card p {
    text-align: justify;
    color: #cbd5e1;
  }

  /* features list – center the items */
  .core-service-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: justify;
  }

  .core-service-features li {
    display: flex;
    align-items: justify;
    gap: 10px;
    font-size: clamp(13px, 0.85vw, 14px);
    color: #b8c2d1;
    margin-bottom: 8px;
    justify-content: justify;
  }

  .core-service-features .tick {
    width: 18px;
    height: 18px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d4af37;
    font-size: 11px;
    flex-shrink: 0;
  }

   .how-we-work {
    padding: 80px 0;
  }

  .how-we-work-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .how-work-card {
    text-align: center;
    padding: 25px 20px;
  }

  .how-work-icon {
    margin: 0 auto 18px;
  }

  .how-work-card p {
    text-align: center;
  }

  .how-work-number {
    display: inline-block;
    margin-bottom: 12px;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .process-step-content {
    text-align: center;
  }

  .process-step-icon {
    margin: 0 auto 10px;
  }

  .process-step-content p {
    text-align: center;
  }

  .wwd-why-choose {
    padding: 80px 0;
  }

   .wwd-why-grid {
    display: flex !important;       /* override grid */
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
    padding-bottom: 15px;
    gap: 0;
  }

  .wwd-why-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    padding: 30px;
    margin: 0;
    border-radius: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    text-align: center;
  }

  .wwd-why-card .wwd-why-icon {
    margin: 0 auto 18px;           /* center icon */
  }

  .wwd-why-card h3 {
    text-align: center;
    color: #fff;
  }

  .wwd-why-card p {
    text-align: center;
    color: #cbd5e1;
  }

  .wwd-why-card p {
    text-align: justify;
  }
  
  .category-header h3 {
    margin-bottom: 20px !important;
}

  .industries-served {
    padding: 80px 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card p {
    text-align: center;
  }

  .wwd-approach {
    padding: 80px 0;
  }

  .approach-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-content .section-title {
    text-align: center;
  }

  .approach-content p {
    text-align: center;
  }

  .approach-list li {
    justify-content: center;
  }

  .approach-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: -60px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 15px 20px;
  }

  .wwd-why-card h3 {
    text-align: center;
  }

  .breadcrumb-section {
    padding: 100px 0 60px;
    min-height: 220px;
  }

  .breadcrumb-content h1 {
    font-size: 30px;
  }

  .about-company-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-company-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .stat-item {
    padding: 15px 10px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 11px;
  }

  .company-badge {
	position: absolute;
    top: 84%;
    left: 44%;
    transform: translate(-50%, -50%);
    padding: 25px;
    width: 57%;
    text-align: center;
    z-index: 2;
}

  .company-badge i {
    font-size: 30px;
    color: #d4af37;
    margin-top: 5px;
    margin-bottom: 2px;
  }

  .company-badge h3 {
    font-size: 20px !important;
    margin: 8px !important;
    color: #fff;
  }
  
  .company-badge p{
    font-size: 15px !important;
	text-align: center !important;
  }
  
   
  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activity-card {
    text-align: center;
  }

  .activity-icon {
    margin: 0 auto 18px;
  }

  .activity-number {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    margin-bottom: 0px;
    font-size: 28px;
  }

  .activity-card p {
    text-align: justify;
  }
  
  .company-overview {
    padding: 80px 0;
    background: #ffffff;
}
  
  .overview-grid {
    display: flex !important;       /* override grid */
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
    padding-bottom: 15px;
    gap: 0;
  }

  .overview-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    padding: 30px;
    margin: 0;
    border-radius: 14px;
    background: #f8f9fb;
    text-align: center;
  }

  .overview-card .overview-icon {
    margin: 0 auto 18px;            /* centre icon */
  }

  .overview-card h3 {
    text-align: center;
  }

  .overview-card p {
    text-align: center;
  }
  
  .mandate-operations  {
    padding: 80px 0;
  }

  .about-company  {
    padding: 80px 0;
  }
  
  .mandate-values  {
    padding: 80px 0;
  }
  
  .core-activities {
    padding: 80px 0;
  }
  
  .counter-section {
    padding: 50px 0 !important;
}

   .operations-grid {
    display: flex !important;       /* override grid */
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
    padding-bottom: 15px;
    gap: 0;
  }

  .operation-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    padding: 30px 30px;
    margin: 0;
    border-radius: 14px;
    background: #fff;
    text-align: center;
  }

  /* center the step badge on mobile */
  .operation-card .operation-step {
    display: inline-block;
    margin: 0 auto 20px auto;
	margin-bottom: 30px;
  }

  .operation-card .operation-icon {
    margin: 0 auto 18px;           /* center icon */
  }

  .operation-card h3 {
    text-align: center;
  }

  .operation-card p {
    text-align: justify;
  }

  .values-grid {
    grid-template-columns: 1fr !important;
  }

  .value-card {
    padding: 25px 15px;
  }

  .value-card p {
    text-align: center;
  }

  .about-company-text p {
    text-align: justify;
  }

  .about-company-text h2 {
    text-align: center;
  }

  .section-tag.center.line {
    gap: 8px;
  }

  .section-tag.center.line::before,
  .section-tag.center.line::after {
    width: 25px;
  }

  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    padding: 30px;
    gap: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    align-items: flex-start;
  }

  .nav a {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    padding: 8px 0;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .btn-primary {
    display: none;
  }

  .hero {
	min-height: 90vh;
    padding: 33px 0;
  }
  
  .hero h1 {
    font-size: 28px;
  }

  .hero-features {
    gap: 15px;
    font-size: 13px;
    flex-direction: column;
    margin-left: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-card {
    margin: 0 auto;
    text-align: center;
  }

  .icon-box {
    margin: 0 auto 15px;
  }
  
  .why-card p {
    text-align: center;
  }
  
  .why-grid {
    display: flex !important;       /* override grid */
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 400px;              /* comfortable mobile width */
    margin: 20px auto 0 auto;
    padding-bottom: 15px;
    gap: 0;                        /* remove grid gap */
  }

  .why-card {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    padding: 28px;               /* inner spacing, not margin */
    margin: 0;
    border-radius: 12px;
    background: #f7f8fb;           /* keep original background */
    text-align: left;              /* keep original text alignment */
  }

  /* keep card elements centered nicely on mobile */
  .why-card .icon-box {
    margin: 0 auto 15px;           /* center the icon box */
  }

  .why-card h3 {
    text-align: center;
  }

  .why-card p {
    text-align: center;
  }

  .global-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .corporate-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

    .commodities-grid {
    display: flex !important;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 97%;
    margin: 0 auto; /* ← CENTERED */
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.09);
    transition: all 0.35s ease;
    animation: fadeInUp 0.6s ease forwards;
    gap: 0;
  }

  .commodity-card {
    flex: 0 0 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    margin: 0;
  }

  .section-tag {
    font-size: 13px !important;
  }  
  
  .section-tag.line::before {
    content: '';
    width: 30px;
  }
  
  .section-tag.center.line::before,
  .section-tag.center.line::after {
    width: 30px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons a {
    text-align: center;
  }
  
  .description {
    font-size: 13px;
    text-align: center;
  }

  .about-image {
    margin-top: 20px;
  }

  .experience-badge {
	position: absolute;
    top: 80%;
    left: 56%;
    transform: translate(-50%, -50%);
    padding: 10px;
    width: 45%;
    text-align: center;
    z-index: 2;
}

  .experience-badge h3 {
    font-size: 40px !important;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  
  .experience-badge p {
    font-size: 13px !important;
    text-align: center;
    margin-top: 5px !important;
    margin-bottom: 20px !important;
  }

  .global-badge {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    padding: 20px;
    width: 75%;
    background: rgba(0,0,0,0.7);
    border-radius: 12px;
    margin-top: -405px;
    margin-left: 50px;
    margin-bottom: 50px;
  }

  .global-badge h3 {
    font-size: 50px !important;
  }
  
  .global-badge p {
    text-align: center;
  }

  .scroll-top-btn {
    width: 50px;
    height: 50px;
    font-size: 16px;
    bottom: 20px;
    right: 20px;
  }
  
  .tagline {
    font-size: 10px;
    text-align: left;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .tagline.line::before {
    width: 30px;
  }
  .container {
    width: 90%;
  }
  
  h2, h3, h4, h5 {
    font-size: 20px !important;
    margin-top: 20px !important;
    margin-bottom: 30px !important;
  }

  .hero h1 {
    font-size: 26px;
    text-align: center;  
    margin-bottom: 20px;
  }
  
  .btn-gold {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  
  .btn-outline {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  
  .about-text h2 {
    text-align: center;
  }
  
  .services{
    padding:40px 0;
  }

  .service-grid{
    grid-template-columns:repeat(4,1fr) !important;
    gap:8px;
  }

  .service-card{
    padding:10px 4px;
  }

  .service-card p{
    font-size:10px;
    line-height:1.2;
    word-break:break-word;
    overflow-wrap:break-word;
  }
  
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .services {
    padding: 40px 0;
  }
  
  .service-card p {
    font-size: 13px;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .wwd-card {
    margin: 0 auto;
    text-align: center;
  }

  .wwd-icon {
    margin: 0 auto 15px;
  }
  
  .wwd-card p {
    text-align: center;
  }
  
  .global-content .section-title {
    text-align: center;
  }
  
  .global-text {
    text-align: justify;
  }
  
  .global-list h4 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
    font-size: 18px !important;
  }
  
  .global-list p {
    font-size: 15px;
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }
  
  .global-note {
    text-align: center;
    font-size: 15px;
  }
  
  .section-title {
    text-align: center;
  }
  
  .corporate p {
    text-align: justify;
  }
  
  .commodity-body {
    margin: 0 auto;
    text-align: center;
  }

  .commodity-body i {
    margin: 0 auto 15px;
  }
  
  .commodity-body p {
    text-align: center;
  }
  
  .cta-box p {
    font-size: 13px;
  }
  
  .workflow {
    padding: 80px 0;
  }

  .corporate {
    padding: 80px 0;
  }

  .company-card {
    padding: 20px;
  }

  .company-top h3 {
    font-size: 18px;
  }

  .company-row {
    font-size: 13px;
    padding: 18px 0;
  }

  
  .commodities {
    padding: 80px 0;
  }

  .counter-item {
    padding: 10px;
  }

  .counter-number {
    font-size: 28px;
  }

  .counter-suffix {
    font-size: 24px;
  }

  .btn-outline-light {
    width: 90%;
    display: block;
    margin: 0 auto;
  }
  
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons a {
    text-align: center;
  }

  .cta-section {
    padding: 80px 0;
  }
  
  .capabilities {
    padding: 80px 0;
  }

  .global-reach {
    padding: 80px 0;
  }

  .what-we-do {
    padding: 80px 0;
  }

  .why {
    padding: 80px 0;
  }

  .about {
    padding: 80px 0;
  }

  .logo-img {
    height: 55px;
  }

  .logo-mark {
    height: 75px;
    margin: 0 auto;
    text-align: center;
  }

  .section-subtitle {
    margin-bottom: 30px !important;
    text-align: justify !important;
  }

  .counter-number {
    font-size: 32px;
  }

  .counter-suffix {
    font-size: 28px;
  }
  .cap-card {
    text-align: left;
    font-size: 13px;
  }

  .cap-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .footer {
    padding-top: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
    padding-bottom: 50px;
  }

  .footer-logo {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footer-logo img {
    max-width: auto;
    height: 75px;
  }

  .footer h4 {
    margin-bottom: 1px !important;
    margin-bottom: 20px !important;
  }

  .footer-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .footer ul {
    padding: 0;
  }

  .footer ul li,
  .footer-company li {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .footer a {
    font-size: 16px;
  }

  .footer a:hover {
    padding-left: 0;
  }

  .footer-bottom {
    padding: 20px 15px;
    font-size: 11px;
    line-height: 1.6;
  }  
}