.stats-section {
  padding: 70px 10%;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

:root {
  --primary-regular-font: "Neulis Sans";
  --primary-font-weight: 600;
  --regular-font-weight: 400;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch;
}


.stat-card {
  background: #ffffff;
  padding: 28px 20px;
  border-radius: 22px;
  text-align: center;
  border: 1px solid rgba(10, 113, 115, 0.25);
  box-shadow: 0 18px 45px rgba(10, 113, 115, 0.18);
  transition: .3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 70px rgba(10, 113, 115, 0.25);
}

.stat-card h2 {
  font-size: 38px;
  margin-bottom: 6px;
  color: #0a7173;
}

.stat-card p {
  color: #444;
}


@media(max-width:900px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}


/* team section */


.team-section {
  padding: 90px 0;
}

.team-heading {
  font-size: 36px;
  margin-bottom: 40px;
}

/* CARD */
.team-card {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
  transition: .3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

/* IMAGE */
.team-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: .4s ease;
}

.team-card:hover img {
  transform: scale(1.05);
}

/* INFO SECTION */
.team-info {
  background: #0a7173;
  color: #fff;
  padding: 14px 18px;
}

.team-info .name {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.team-info .designation {
  font-size: 13px;
  opacity: .9;
}


/* -------- OWL STYLES -------- */
.team-slider .owl-nav {
  position: relative;
}

/* BUTTONS */
.team-slider .owl-prev,
.team-slider .owl-next {
  position: absolute;
  top: -55px;
  font-size: 34px !important;
  color: #0a7173 !important;
  font-weight: bold !important;
  z-index: 1000;
}

/* LEFT */
.team-slider .owl-prev {
  right: 70px;
}

/* RIGHT */
.team-slider .owl-next {
  right: 25px;
}

/* Make span visible always */
.team-slider .owl-prev span,
.team-slider .owl-next span {
  display: inline-block !important;
}


/* MAIN CTA WRAPPER */
.cta-banner {
  background: url("../image/about/rr.avif") center/cover no-repeat;
  position: relative;
  padding: 120px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* SOFT THEME OVERLAY */
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(10 113 115 / 82%);
  /* adjust tint */
}

/* CONTENT LAYER */
.cta-overlay {
  position: relative;
  color: #ffffff;
  max-width: 900px;
  margin: auto;
}

/* SMALL TOP TEXT */
.cta-top {
  font-size: 18px;
  opacity: .95;
  margin-bottom: 12px;
}

/* MAIN HEADING */
.cta-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* PHONE TEXT */
.cta-phone {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 14px 40px;
  background: #ffffff;
  color: #0a7173;
  border-radius: 40px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s ease;
}

.cta-btn:hover {
  background: #e6f1f1;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .cta-title {
    font-size: 30px;
  }

  .cta-phone {
    font-size: 32px;
  }
}


/* IMAGE BOX */
.modern-img {
  position: relative;
  padding: 18px;
}

.modern-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 6px;
  pointer-events: none;
}

.modern-img img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, .15);
}

/* BADGE */
.about-badge {
  color: #0a7173;
  letter-spacing: .5px;
  font-weight: 600;
  margin-bottom: 6px;
}

/* TITLE */
.modern-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* SUB TEXT */
.modern-sub {
  font-size: 20px;
  color: #555;
  font-style: italic;
  margin-bottom: 18px;
}

/* DESCRIPTION */
.modern-desc {
  color: #555;
  line-height: 1.9;
  margin-bottom: 28px;
}

/* BUTTON WRAP */
.modern-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* MAIN BUTTON */
.discover-btn {
  background: #0a7173;
  color: #fff;
  padding: 14px 34px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.discover-btn:hover {
  background: #075153;
}

/* VIDEO BUTTON */
.video-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

/* PLAY ICON */
.play-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

/* RESPONSIVE */
@media(max-width:992px) {
  .modern-title {
    font-size: 32px;
  }

  .modern-sub {
    font-size: 18px;
  }

  .modern-actions {
    flex-wrap: wrap;
  }
}


/* facilty section */



.facility-section {
  padding: 80px 0;
}

.facility-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.facility-left {
  flex: 1;
}

.tag {
  color: var(--theme);
  font-weight: 600;
  font-size: 18px;
}

.facility-left h2 {
  font-size: 48px;
  font-weight: 800;
  margin: 15px 0;
}

.subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
}

.facility-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
}

.list-item {
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  color: white;
  background: rgba(10, 113, 115, .15);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--theme);
  font-weight: 600;
}

.facility-right {
  flex: 1;
  position: relative;
}

.facility-right img {
  width: 100%;
  border-radius: 12px;
}

.play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--theme);
  color: white;
  display: grid;
  place-items: center;
  font-size: 30px;
  cursor: pointer;
}



:root {
  --theme: #0a7173;
}

.focus-section {
  padding: 80px 0;
  background: #f6fbfb;
}

.sub-title {
  background: #ffe8e1;
  padding: 6px 18px;
  border-radius: 20px;
  color: var(--theme);
  font-weight: 600;
}

.main-title {
  font-size: 42px;
  font-weight: 800;
  margin-top: 10px;
}

.focus-card {
  background: #fff;
  padding: 35px;
  border-radius: 14px;
  text-align: center;
  margin-top: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .05);
  border-bottom: 4px solid transparent;
  transition: .3s;
  text-decoration: none;
  display: block;
  color: #000;
}

.focus-card:hover {
  border-color: var(--theme);
  transform: translateY(-5px);
}

.icon-box {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: rgba(10, 113, 115, .1);
  display: grid;
  place-items: center;
  color: var(--theme);
  font-size: 30px;
  margin-bottom: 20px;
}

.focus-card h3 {
  font-weight: 800;
}

.focus-card p {
  color: #666;
  font-size: 15px;
  margin: 15px 0 20px;
}

.link-btn {
  color: var(--theme);
  font-weight: 600;
}


/* news section */


.blog-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .07);
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.meta {
  display: flex;
  gap: 20px;
  padding: 15px 20px 0;
  color: #777;
  font-size: 14px;
}

.blog-card h3 {
  padding: 10px 20px;
  font-size: 22px;
  line-height: 30px;
}

.bottom {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 20px;
  border-top: 1px solid #eee;
}

.bottom a {
  color: #0a7173;
  font-weight: 600;
}



.trust-section {
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
}

.trust-box {
  text-align: center;
  padding: 10px 25px;
  transition: .3s ease;
}

.trust-box img {
  width: 55px;
  margin-bottom: 15px;
  filter: brightness(0) saturate(100%) invert(20%) sepia(61%) saturate(896%) hue-rotate(163deg) brightness(94%) contrast(95%);
}

.trust-box h3 {
  color: #0a3c87;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}

.divider {
  height: 70px;
  background: #cfe0ff;
}

@media(max-width:992px) {

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .divider {
    display: none;
  }
}

@media(max-width:600px) {

  .trust-grid {
    grid-template-columns: 1fr;
  }
}


/* GLOBAL EXPORT CSS */
.service-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-image img {
  width: 100%;
  max-width: 780px;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
}

.service-content h1 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #0a0a0a;
}

.service-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  max-width: 650px;
}


.section-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}



.left-side h2 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #0a0a0a;
}


.right-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.box-type {
  background: #f7f7f7;
  padding: 30px;
  border-radius: 10px;
}

.box-type .icon {
  font-size: 34px;
}

.box-type h4 {
  font-size: 20px;
  margin: 15px 0 10px;
  font-weight: 800;
}

.box-type p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

@media(max-width:992px) {

  .section-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .right-side {
    grid-template-columns: 1fr;
  }

  .left-side h2 {
    font-size: 38px;
  }
}

.ship-section {

  background: #F5F5F5;
}

.ship-container {
  width: 90%;
  margin: auto;
  text-align: center;
}

.ship-heading h2 {
  font-size: 40px;
  font-weight: 500;
}

.ship-heading p {
  max-width: 900px;
  margin: 10px auto 40px;
  color: #555;
}

.ship-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.ship-box {
  width: 340px;
  padding: 30px 25px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: .3s;
  background: #fff;
}

.ship-icon {
  font-size: 48px;
  margin-bottom: 10px;
}

.ship-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.ship-box p {
  color: #666;
}

/* smooth hover */
.ship-box:hover {
  transform: translateY(-6px);
  border-color: #0a71a6;
}

.ship-note {
  margin-top: 40px;
  color: #444;
}


.sea-about {

  background: #fff;
}

.sea-about-container {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

.sea-about-image img {
  width: 100%;
  max-width: 650px;
  border-radius: 14px;
}

.sea-about-content h2 {
  font-size: 46px;
  margin-bottom: 15px;
}

.sea-about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}


@media(max-width:900px) {
  .sea-about-container {
    flex-direction: column;
    text-align: center;
  }
}



.sea-cta {
  background: url("../image/service/lo.webp") center/cover;
  position: relative;
  font-family: var(--primary-regular-font);
}

.sea-cta-overlay {
  text-align: center;
  color: #fff;
  background: rgb(0 0 0 / 73%);
  padding: 80px 20px;
}

.sea-cta h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.sea-cta p {
  max-width: 900px;
  margin: 10px auto;
  line-height: 1.7;
}

.sea-cta-btn {
  margin-top: 25px;
  display: inline-block;
  padding: 12px 26px;
  border-radius: 30px;
  background: #076871;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.sea-cta-btn:hover {
  background: #055a85;
}


.icons-img img {
  width: 60px;
}



/* Hemang css */
/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-regular-font);
  background-color: white;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Header */
.site-header {
  background-color: #262626;
  color: white;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  margin-left: 4px;
}

.logo-main {
  font-size: 24px;
  font-weight: bold;
}

.logo-sub {
  font-size: 10px;
  color: #f97316;
}

/* Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #f97316;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
}

.contact-btn {
  background-color: transparent;
  border: 1px solid white;
  padding: 8px 24px;
  font-size: 14px;
  color: white;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: white;
  color: #262626;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  background-image: url('https://img.freepik.com/premium-photo/stock-market-business-exchange-financial-growth-graph-business-chart-data-graph-diagram-business-trading-graph-investment-growth-global-trend-arrow-up-down_35148-15551.jpg?uid=R157141872&ga=GA1.1.827032807.1767902063&semt=ais_hybrid&w=740&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: var(--primary-regular-font);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  padding-left: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-content {
    padding-left: 64px;
  }
}

.hero-title {
  color: white;
  font-size: 48px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 64px;
  }
}

/* Worldwide Sea Freight Services Section */
.services-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-container {
  width: 100%;
}

.services-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .services-grid {
    flex-direction: row;
  }
}

.services-image {
  width: 100%;
}

@media (min-width: 768px) {
  .services-image {
    width: 50%;
  }
}

.services-img {
  border-radius: 8px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.services-content {
  width: 100%;
}

@media (min-width: 768px) {
  .services-content {
    width: 50%;
  }
}

.services-title {
  font-size: 36px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .services-title {
    font-size: 48px;
  }
}

.services-text {
  color: #6b7280;
  line-height: 1.8;
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-container {
  width: 100%;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .features-grid {
    flex-direction: row;
  }
}

.features-header {
  width: 100%;
}

@media (min-width: 1024px) {
  .features-header {
    width: 33.333%;
  }
}

.features-title {
  font-size: 36px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .features-title {
    font-size: 48px;
  }
}

.features-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-cards {
    width: 66.667%;
  }
}

.feature-card {
  background-color: #f3f4f6;
  padding: 32px;
  border-radius: 4px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #111827;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 12px;
}

.feature-text {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Specialized Section */
.specialized-section {
  padding: 80px 20px;
  background-color: #f3f4f6;
}

.specialized-container {
  max-width: 1200px;
  margin: 0 auto;
}

.specialized-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .specialized-header {
    flex-direction: row;
  }
}

.specialized-title {
  font-size: 36px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .specialized-title {
    font-size: 48px;
    margin-bottom: 0;
  }
}

.specialized-subtitle {
  color: #6b7280;
  max-width: 400px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .specialized-subtitle {
    margin-top: 0;
  }
}

.specialized-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .specialized-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.specialized-card {
  background-color: white;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.specialized-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: #111827;
}

.specialized-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 12px;
}

.specialized-card-text {
  color: #6b7280;
  font-size: 14px;
}

.specialized-footer {
  color: #6b7280;
  text-align: center;
}

/* Simplify Section */
.simplify-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9fafb;
}

.simplify-container {
  width: 100%;
}

.simplify-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .simplify-grid {
    flex-direction: row;
  }
}

.simplify-image {
  width: 100%;
}

@media (min-width: 768px) {
  .simplify-image {
    width: 50%;
  }
}

.simplify-img {
  border-radius: 8px;
  width: 100%;
  height: 256px;
  object-fit: cover;
}

.simplify-content {
  width: 100%;
}

@media (min-width: 768px) {
  .simplify-content {
    width: 50%;
  }
}

.simplify-title {
  font-size: 36px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .simplify-title {
    font-size: 48px;
  }
}

.simplify-text {
  color: #6b7280;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  background-color: #1a2f2a;
  color: white;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: 0.025em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #d1d5db;
  text-decoration: underline;
}

.footer-link:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-heading {
  font-weight: 600;
}

.contact-detail {
  color: #d1d5db;
}

.iso-col {
  text-align: center;
}

.iso-badge {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border: 4px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.iso-inner {
  text-align: center;
  color: black;
}

.iso-text {
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.iso-main {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.iso-number {
  font-size: 10px;
  font-weight: 600;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .footer-actions {
    flex-direction: row;
    justify-content: space-between;
  }
}

.newsletter {
  display: flex;
  width: 100%;
}

@media (min-width: 1024px) {
  .newsletter {
    width: auto;
  }
}

.newsletter-input {
  padding: 12px 16px;
  width: 100%;
  color: #4a5568;
  background-color: white;
  border: none;
  outline: none;
}

@media (min-width: 1024px) {
  .newsletter-input {
    width: 320px;
  }
}

.newsletter-btn {
  padding: 12px 32px;
  background-color: white;
  color: #4a5568;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-left: 1px solid #d1d5db;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #f3f4f6;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: white;
  color: #1a2f2a;
}

.social-svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #4b5563;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .bottom-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 14px;
  color: #d1d5db;
}

.copyright-link {
  text-decoration: underline;
  color: #d1d5db;
}

.copyright-link:hover {
  color: white;
}

.bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bottom-link {
  font-size: 14px;
  color: #d1d5db;
}

.bottom-link:hover {
  color: white;
}

/* Floating Buttons */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
  z-index: 50;
}

.whatsapp-btn:hover {
  background-color: #059669;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
  z-index: 50;
}

.back-to-top:hover {
  background-color: #4b5563;
}

.back-icon {
  width: 20px;
  height: 20px;
  color: white;
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-regular-font);
  background-color: white;
  color: #333;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Header */
.site-header {
  background-color: #262626;
  color: white;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  margin-left: 4px;
}

.logo-main {
  font-size: 24px;
  font-weight: bold;
}

.logo-sub {
  font-size: 10px;
  color: #f97316;
}

/* Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #f97316;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
}

.contact-btn {
  background-color: transparent;
  border: 1px solid white;
  padding: 8px 24px;
  font-size: 14px;
  color: white;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: white;
  color: #262626;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 500px;
  background-image: url('https://img.freepik.com/premium-vector/money-banking-banner-with-colored-web-icons-credit-card-currency-exchange-atm-terminal-banner_121070-916.jpg?w=2000');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  padding-left: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .hero-content {
    padding-left: 64px;
  }
}

.hero-title {
  color: white;
  font-size: 48px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 64px;
  }
}

/* Worldwide Sea Freight Services Section */
.services-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-container {
  width: 100%;
}

.services-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .services-grid {
    flex-direction: row;
  }
}

.services-image {
  width: 100%;
}

@media (min-width: 768px) {
  .services-image {
    width: 50%;
  }
}

.services-img {
  border-radius: 8px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.services-content {
  width: 100%;
}

@media (min-width: 768px) {
  .services-content {
    width: 50%;
  }
}

.services-title {
  font-size: 36px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .services-title {
    font-size: 48px;
  }
}

.services-text {
  color: #6b7280;
  line-height: 1.8;
}

/* Features Section */
.features-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-container {
  width: 100%;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (min-width: 1024px) {
  .features-grid {
    flex-direction: row;
  }
}

.features-header {
  width: 100%;
}

@media (min-width: 1024px) {
  .features-header {
    width: 33.333%;
  }
}

.features-title {
  font-size: 36px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .features-title {
    font-size: 48px;
  }
}

.features-cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .features-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-cards {
    width: 66.667%;
  }
}

.feature-card {
  background-color: #f3f4f6;
  padding: 32px;
  border-radius: 4px;
}

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #111827;
}

.feature-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 12px;
}

.feature-text {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Specialized Section */
.specialized-section {
  padding: 80px 20px;
  background-color: #f3f4f6;
}

.specialized-container {
  max-width: 1200px;
  margin: 0 auto;
}

.specialized-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .specialized-header {
    flex-direction: row;
  }
}

.specialized-title {
  font-size: 36px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .specialized-title {
    font-size: 48px;
    margin-bottom: 0;
  }
}

.specialized-subtitle {
  color: #6b7280;
  max-width: 400px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .specialized-subtitle {
    margin-top: 0;
  }
}

.specialized-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .specialized-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.specialized-card {
  background-color: white;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #e5e7eb;
  text-align: center;
}

.specialized-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: #111827;
}

.specialized-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #111827;
  margin-bottom: 12px;
}

.specialized-card-text {
  color: #6b7280;
  font-size: 14px;
}

.specialized-footer {
  color: #6b7280;
  text-align: center;
}

/* Simplify Section */
.simplify-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f9fafb;
}

.simplify-container {
  width: 100%;
}

.simplify-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 768px) {
  .simplify-grid {
    flex-direction: row;
  }
}

.simplify-image {
  width: 100%;
}

@media (min-width: 768px) {
  .simplify-image {
    width: 50%;
  }
}

.simplify-img {
  border-radius: 8px;
  width: 100%;
  height: 256px;
  object-fit: cover;
}

.simplify-content {
  width: 100%;
}

@media (min-width: 768px) {
  .simplify-content {
    width: 50%;
  }
}

.simplify-title {
  font-size: 36px;
  font-weight: 500;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .simplify-title {
    font-size: 48px;
  }
}

.simplify-text {
  color: #6b7280;
  line-height: 1.8;
}

/* Footer */
.site-footer {
  background-color: #1a2f2a;
  color: white;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: 0.025em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #d1d5db;
  text-decoration: underline;
}

.footer-link:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-heading {
  font-weight: 600;
}

.contact-detail {
  color: #d1d5db;
}

.iso-col {
  text-align: center;
}

.iso-badge {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border: 4px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.iso-inner {
  text-align: center;
  color: black;
}

.iso-text {
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.iso-main {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.iso-number {
  font-size: 10px;
  font-weight: 600;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .footer-actions {
    flex-direction: row;
    justify-content: space-between;
  }
}

.newsletter {
  display: flex;
  width: 100%;
}

@media (min-width: 1024px) {
  .newsletter {
    width: auto;
  }
}

.newsletter-input {
  padding: 12px 16px;
  width: 100%;
  color: #4a5568;
  background-color: white;
  border: none;
  outline: none;
}

@media (min-width: 1024px) {
  .newsletter-input {
    width: 320px;
  }
}

.newsletter-btn {
  padding: 12px 32px;
  background-color: white;
  color: #4a5568;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-left: 1px solid #d1d5db;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #f3f4f6;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: white;
  color: #1a2f2a;
}

.social-svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #4b5563;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .bottom-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 14px;
  color: #d1d5db;
}

.copyright-link {
  text-decoration: underline;
  color: #d1d5db;
}

.copyright-link:hover {
  color: white;
}

.bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bottom-link {
  font-size: 14px;
  color: #d1d5db;
}

.bottom-link:hover {
  color: white;
}

/* Floating Buttons */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
  z-index: 50;
}

.whatsapp-btn:hover {
  background-color: #059669;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background-color: #374151;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
  z-index: 50;
}

.back-to-top:hover {
  background-color: #4b5563;
}

.back-icon {
  width: 20px;
  height: 20px;
  color: white;
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-regular-font);
  color: #333;
  line-height: 1.6;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

.font-sans {
  font-family: 'Open Sans', sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  background-color: #262626;
  color: white;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-text {
  margin-left: 4px;
}

.logo-main {
  font-size: 24px;
  font-weight: bold;
}

.logo-sub {
  font-size: 10px;
  color: #f97316;
}

/* Navigation */
.main-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover {
  color: #f97316;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
}

.contact-btn {
  background-color: transparent;
  border: 1px solid white;
  padding: 8px 24px;
  font-size: 14px;
  color: white;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: white;
  color: #262626;
}

/* Hero Section */
.hero-section {
  /* padding: 64px 20px; */
  background-color: #f5f0e8;
}

.hero-container {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
  }
}

.hero-quote {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-quote {
    width: 50%;
  }
}

.quote-container {
  position: relative;
}

.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #4a5568;
  line-height: 1.6;
  padding-left: 32px;
}

@media (min-width: 768px) {
  .quote-text {
    font-size: 28px;
  }
}

.quote-author {
  margin-top: 64px;
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2a3a4a;
}

@media (min-width: 768px) {
  .author-name {
    font-size: 48px;
  }
}

.second-line {
  margin-left: 32px;
}

.author-title {
  color: #6b7280;
  margin-top: 16px;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-image {
    width: 50%;
  }
}

.image-container {
  position: relative;
}

.image-circle {
  width: 288px;
  height: 288px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .image-circle {
    width: 384px;
    height: 384px;
  }
}

.author-img {
  position: relative;
  z-index: 10;
  height: 320px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .author-img {
    height: 384px;
  }
}

/* Sustainability Header */
.sustainability-header {
  padding: 48px 20px;
  text-align: center;
  background-color: #f5f0e8;
  font-family: var(--primary-regular-font);
}

.sustainability-title {
  font-family: var(--primary-regular-font);
  color: #076871;
  font-size: 48px;
  margin-bottom: 24px;
  text-decoration: underline;
  text-decoration-color: #076871;
  text-underline-offset: 8px;
}

@media (min-width: 768px) {
  .sustainability-title {
    font-size: 64px;
  }
}

.sustainability-subtitle {
  font-family: var(--primary-regular-font);
  color: #076871;
  font-size: 20px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .sustainability-subtitle {
    font-size: 24px;
  }
}

/* Sustainability Content */
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.sustain-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sustain-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.blue-content {
  background-color: #076871;
  color: white;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .blue-content {
    padding: 48px;
  }
}

.content-text {
  margin-bottom: 24px;
  line-height: 1.6;
  font-family: var(--primary-regular-font);
}

.solar-image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

/* Cards Section */
.cards-section {
  padding: 64px 20px;
  background-color: #f5f0e8;
  font-family: var(--primary-regular-font);
}

.cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-image {
  height: 192px;
  background-size: cover;
  background-position: center;
}

.card-content {
  padding: 24px;
}

.blue-card {
  background-color: #076871;
  color: white;
}

.gold-card {
  background-color: #c9a961;
  color: white;
}

.card-title {
  font-family: var(--primary-regular-font);
  font-size: 24px;
  margin-bottom: 12px;
}

.card-text {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.card-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 8px 20px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.card-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-icon {
  width: 16px;
  height: 16px;
}

/* Reports Banner */
.reports-banner {
  background-color: #076871;
  padding: 64px 20px;
}

.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 768px) {
  .banner-container {
    flex-direction: row;
  }
}

.banner-title {
  font-family: var(--primary-regular-font);
  color: white;
  font-size: 36px;
}

@media (min-width: 768px) {
  .banner-title {
    font-size: 48px;
  }
}

.banner-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 8px 24px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease;
}

.banner-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Footer */
.site-footer {
  background-color: #1a2f2a;
  color: white;
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
  letter-spacing: 0.025em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #d1d5db;
  text-decoration: underline;
}

.footer-link:hover {
  color: white;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-heading {
  font-weight: 600;
}

.contact-detail {
  color: #d1d5db;
}

.iso-col {
  text-align: center;
}

.iso-badge {
  width: 112px;
  height: 112px;
  margin: 0 auto;
  border: 4px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
}

.iso-inner {
  text-align: center;
  color: black;
}

.iso-text {
  font-size: 8px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.iso-main {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.iso-number {
  font-size: 10px;
  font-weight: 600;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 1024px) {
  .footer-actions {
    flex-direction: row;
    justify-content: space-between;
  }
}

.newsletter {
  display: flex;
  width: 100%;
}

@media (min-width: 1024px) {
  .newsletter {
    width: auto;
  }
}

.newsletter-input {
  padding: 12px 16px;
  width: 100%;
  color: #4a5568;
  background-color: white;
  border: none;
  outline: none;
}

@media (min-width: 1024px) {
  .newsletter-input {
    width: 320px;
  }
}

.newsletter-btn {
  padding: 12px 32px;
  background-color: white;
  color: #4a5568;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-left: 1px solid #d1d5db;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: #f3f4f6;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: white;
  color: #1a2f2a;
}

.social-svg {
  width: 20px;
  height: 20px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #4b5563;
}

.bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .bottom-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 14px;
  color: #d1d5db;
}

.copyright-link {
  text-decoration: underline;
  color: #d1d5db;
}

.copyright-link:hover {
  color: white;
}

.bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.bottom-link {
  font-size: 14px;
  color: #d1d5db;
}

.bottom-link:hover {
  color: white;
}

/* Floating Buttons */
.whatsapp-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 48px;
  height: 48px;
  background-color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #059669;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background-color: #1a2f2a;
  border: 1px solid #6b7280;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: background-color 0.3s ease;
}

.back-to-top:hover {
  background-color: #374151;
}

.back-icon {
  width: 20px;
  height: 20px;
  color: white;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--primary-regular-font);
  line-height: 1.5;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('https://img.freepik.com/free-photo/scene-with-photorealistic-logistics-operations-proceedings_23-2151468903.jpg?uid=R157141872&ga=GA1.1.827032807.1767902063&semt=ais_hybrid&w=740&q=80');
}

.hero-section-global-export {
  position: relative;
  font-family: var(--primary-regular-font);
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('../image/globalExport.png');
}

.hero-section-warehouse {
  position: relative;
  font-family: var(--primary-regular-font);
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('../image/warehouse.jpg');
}

.hero-section-sustainibility {
  position: relative;
  font-family: var(--primary-regular-font);
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('../image/sust-2.jpg');
}

.hero-section-comodity {
  position: relative;
  font-family: var(--primary-regular-font);
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('../image/comodity.jpg');
}

.hero-section-informationTech {
  position: relative;
  font-family: var(--primary-regular-font);
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('../image/information-technology.jpg');
}

.hero-section-real-estate {
  position: relative;
  font-family: var(--primary-regular-font);
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('../image/real-estate.jpg');
}

.hero-section-merchant-supply {
  position: relative;
  font-family: var(--primary-regular-font);
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('../image/merchant.jpg');
}

.hero-section-global-reach {
  position: relative;
  font-family: var(--primary-regular-font);
  height: 550px;
  background-size: cover;
  background-position: center;
  background-image: url('../image/earth.jpg');
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-title {
  color: white;
  font-size: 48px;
  font-weight: bold;
  line-height: 1;
}

.hero-content p {
  color: #fff;
  margin-top: 20px;

}

/* Main Content Sections */
.content-section {
  padding: 80px 16px;
  max-width: 1280px;
  margin: 0 auto;
  font-family: var(--primary-regular-font);
}


.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 50px;
}

.sustain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.content-text {
  width: 100%;
}

/* Image Container */
.image-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* Typography */
.section-title {
  font-size: 36px;
  font-weight: 500;
  color: #171717;
  margin-bottom: 24px;
  line-height: 1.2;
}

.section-paragraph {
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
}

/* Why Choose Us Cards */
.feature-card {
  background-color: rgb(239, 246, 255);
  border: 1px solid rgb(191, 219, 254);
  border-radius: 8px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
  width: 40px;
  height: 40px;
  color: rgb(37, 99, 235);
  margin-bottom: 16px;
}

.feature-card-title {
  font-weight: 700;
  font-size: 18px;
  color: #1f2937;
  margin-bottom: 8px;
}

.feature-card-text {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.5;
}

/* Cards Grid */
.cards-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Custom Solutions Section */
.solutions-section {
  padding: 80px 16px;
  background-color: rgb(243, 244, 246);
  font-family: var(--primary-regular-font);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.solution-card {
  border-radius: 8px;
  padding: 32px;
  text-align: center;
  transition: transform 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
}

.solution-card-blue {
  background-color: #076871;
  color: white;
}

.solution-card-white {
  background-color: white;
  border: 1px solid rgb(229, 231, 235);
}

.solution-icon {
  display: flex;
  justify-content: center;
  margin: 0 auto 24px;
}

.solution-icon-blue {
  width: 64px;
  height: 64px;
  color: white;
}

.solution-icon-dark {
  width: 64px;
  height: 64px;
  color: #171717;
}

.solution-card-title {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 16px;
}

.solution-card-title-dark {
  color: #171717;
}

.solution-card-text {
  font-size: 14px;
  line-height: 1.5;
}

.solution-card-text-blue {
  color: rgb(219, 234, 254);
}

.solution-card-text-gray {
  color: #4b5563;
}

/* Utility Classes */
.max-w-7xl {
  max-width: 1280px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-12 {
  margin-bottom: 48px;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-title {
    font-size: 60px;
  }

  .section-title {
    font-size: 48px;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }

  .sustain-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 48px;
  }

  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .section-title {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 72px;
  }

  .section-title {
    font-size: 40px;
  }

  .content-section {
    padding: 50px 32px;
  }

  .solutions-section {
    padding: 80px 32px;
  }
}

/* Tablet View */
@media (min-width: 640px) and (max-width: 767px) {
  .hero-title {
    font-size: 56px;
  }

  .section-title {
    font-size: 42px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .solution-card:nth-child(3) {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }
}


/* Privacy Policy & Terms Common Styling */
.privacy-policy,
.terms-conditions {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #333;
}

/* Main Heading */
.privacy-policy h2,
.terms-conditions h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
  text-align: left;
}

/* Section Headings */
.privacy-policy h3,
.terms-conditions h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

/* Paragraph Styling */
.privacy-policy p,
.terms-conditions p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 15px;
  color: #555;
}

/* Lists */
.privacy-policy ul,
.terms-conditions ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.privacy-policy ul li,
.terms-conditions ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #555;
}

/* Contact Info Highlight */
.privacy-policy p strong,
.terms-conditions p strong {
  color: #111;
  font-weight: 600;
}

/* Container spacing fix (optional if using Bootstrap container) */
.container .privacy-policy,
.container .terms-conditions {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Responsive tweaks */
@media (max-width: 768px) {

  .privacy-policy,
  .terms-conditions {
    padding: 40px 15px;
  }

  .privacy-policy h2,
  .terms-conditions h2 {
    font-size: 28px;
  }

  .privacy-policy h3,
  .terms-conditions h3 {
    font-size: 20px;
  }

  .privacy-policy p,
  .terms-conditions p,
  .privacy-policy ul li,
  .terms-conditions ul li {
    font-size: 15px;
  }
}

/* ===== Terms & Conditions Styling ===== */

.terms-conditions {
  padding: 60px 0;
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #333;
}

/* Main Heading */
.terms-conditions h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #111;
}

/* Section Headings */
.terms-conditions h3 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

/* Paragraphs */
.terms-conditions p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 15px;
  color: #555;
}

/* Lists */
.terms-conditions ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-conditions ul li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
  color: #555;
}

/* Contact Info Highlight */
.terms-conditions p strong {
  color: #111;
  font-weight: 600;
}

/* Container spacing (Bootstrap friendly) */
.container .terms-conditions {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .terms-conditions {
    padding: 40px 15px;
  }

  .terms-conditions h2 {
    font-size: 28px;
  }

  .terms-conditions h3 {
    font-size: 20px;
  }

  .terms-conditions p,
  .terms-conditions ul li {
    font-size: 15px;
  }
}

.footerSocialLinks {
  display: flex;
}

/* CONTACT US */
.contact-list {
  padding: 0px;
}

.contact-list li {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 5px;

}

.contact-banner {
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)),
    url('../image/service/conatct.png') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.contact-banner {
  color: #fff;
}

.contact-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-banner p {
  font-size: 16px;
  opacity: 0.9;
}

.contact-section {
  display: flex;
  gap: 60px;
  padding: 70px 10%;

}

/* LEFT FORM */

.contact-left {
  flex: 1;
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 60px 60px 60px;
}

.contact-left form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-left input,
.contact-left textarea {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 16px;
}

.contact-left textarea {
  height: 140px;
  resize: none;
}

.send-btn {
  width: max-content;
  padding: 14px 38px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}


/* RIGHT SIDE */

.contact-right {
  flex: 1;
}

.contact-right h2 {
  font-size: 35px;
  margin-bottom: 10px;
}

.contact-right p {
  margin-bottom: 5px;
  line-height: 1.7;
}

.map-box {
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}

.office-block {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.office-block h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

/* RESPONSIVE */

@media(max-width:992px) {
  .contact-section {
    flex-direction: column;
  }

  .office-block {
    flex-direction: column;
  }
}


.cta-contact {
  background: #f2f2f2;
  padding: 40px 0;
}

.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta-contact h2 {
  font-size: 35px;
  margin-bottom: 15px;
  color: #111;
  font-weight: 500;
}

.cta-contact p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  max-width: 700px;
}

.cta-cont {
  background: #000;
  color: #fff;
  padding: 15px 30px;
  border-radius: 40px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-cont:hover {
  background: #0a7173;
}


/* our business  page*/


.business-banner {
  height: 600px;
  background: linear-gradient(rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.55)),
    url('../image/service/b3.avif') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.business-banner h1,
p {
  color: #fff;
}

.our-business {
  padding: 80px 0;
}

.section-title {
  font-size: 48px;
  margin-bottom: 40px;
}

.business-grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.business-card {
  position: relative;
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
}

.bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.15));
}

.business-card:hover .bg-img {
  transform: scale(1.12);
}

.content {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  color: #fff;
  z-index: 2;
}

.content h3 {
  font-size: 25px;
  color: #ffffff;
  margin-bottom: 10px;
}

.content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 85%;
}

.content a {
  padding: 8px 18px;
  border: 1px solid #fff;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.content a:hover {
  background: #fff;
  color: #000;
}

.business-grid.two-col .business-card:last-child {
  grid-column: span 2;
  height: 520px;
}

.business-grid.two-col .business-card:last-child .content {
  max-width: 520px;
}




/* career page css */
.career-section-new {
  padding: 90px 0;
  background: #f7fbfb;
}

/* Intro */
.career-intro {
  max-width: 700px;
  margin-bottom: 50px;
}

.career-tag {
  color: #076871;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 13px;
}

.career-intro h2 {
  font-size: 42px;
  margin: 12px 0;
}

.career-intro p {
  color: #555;
  line-height: 1.8;
}

/* Grid */
.career-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Left */
.career-left {
  background: #076871;
  color: #fff;
  padding: 50px;
  border-radius: 22px;
}

.career-left h3 {
  font-size: 28px;
  margin-bottom: 25px;
}

.career-points li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 15px;
}

/* Stats */
.career-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 35px;
  gap: 20px;
}

.career-stats h4 {
  font-size: 26px;
}

.career-stats span {
  font-size: 13px;
  opacity: .9;
}

/* Form */
.career-form-new {
  background: #fff;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.career-form-new h3 {
  font-size: 26px;
  margin-bottom: 25px;
  color: #076871;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.career-form-new input,
.career-form-new textarea {
  padding: 14px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.career-form-new textarea {
  height: 120px;
  resize: none;
  margin-bottom: 25px;
}

.career-form-new button {
  background: #076871;
  color: #fff;
  padding: 14px 40px;
  border: none;
  border-radius: 30px;
  font-size: 15px;
  cursor: pointer;
}

.career-form-new button:hover {
  background: #054f55;
}

/* Responsive */
@media(max-width:992px) {
  .career-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.career-form-new textarea {
  grid-column: 1 / -1;
  width: 100%;
}