.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(rgba(10, 30, 60, 0.65), rgba(10, 30, 60, 0.65)),
    url("/src/master_of_eximports.png");

}

.hero-title {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
}

.highlight {
  color: #B8E882;
}

.hero-subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.95;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* Remove hover green color from btn-primary */
.btn-primary-hero {
  background-color: #0d6efd !important;
  border-color: #0d6efd;
  color: #fff !important;
}

.btn-primary-hero:hover,
.btn-primary-hero:focus,
.btn-primary-hero:active {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
  box-shadow: none !important;
}

.btn-primary-hero {
  background-color: #0d6efd;
  border-color: #0d6efd;
  transition: all 0.25s ease;
}

.btn-primary-hero,
.btn-success:hover,
.btn-primary-hero,
.btn-success:focus {
  background-color: #2f80ff;
  /*lighterblue*/
  border-color: #2f80ff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(13, 110, 253, 0.25);
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
}

.hero-buttons .btn {
  font-size: 16px;
  padding: 6px 24px;
  margin: 0;
  border-radius: 50px;
  color: #ffffff;
}


/* trade section */
.trade-section {
  background-color: #ffffff;
}

/* Headings */
.section-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #333;
}

/* Text */
.trade-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Feature Cards */
.feature-card {
  background: #f8f7f2;
  padding: 20px;
  border-radius: 12px;
  height: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.feature-card p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  background-color: #ffffff;
}

/* Center text on mobile & tablets */
@media (max-width: 991.98px) {
  .trade-section {
    text-align: center;
  }

  .trade-section p {
    margin-left: auto;
    margin-right: auto;
  }

  .trade-section img {
    margin: 0 auto;
    display: block;
  }
}

/* Timeline Section */
.timeline-section {
  background: #fafbff;
}

/* Headings */
.timeline-title {
  font-size: 32px;
  font-weight: 500;
}

.timeline-subtitle {
  max-width: 700px;
  margin: 10px auto 0;
  color: #666;
}

/* Timeline base */
.timeline {
  position: relative;
  margin-top: 50px;
}

/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #dcdcdc;
  transform: translateX(-50%);
}

/* Timeline items */
.timeline-item {
  width: 50%;
  padding: 20px 30px;
  position: relative;
}

/* Left & Right */
.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
}

/* Dots */
.timeline-item::before {
  content: '';
  position: absolute;
  top: 30px;
  width: 10px;
  height: 10px;
  background: #2f80ff;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left::before {
  right: -5px;
}

.timeline-item.right::before {
  left: -5px;
}

/* Card */
.timeline-content {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.timeline-content h6 {
  font-weight: 600;
  margin-top: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: #555;
}

/* Month tag */
.month {
  font-size: 12px;
  padding: 4px 10px;
  background: #eef2ff;
  color: #2f80ff;
  border-radius: 50px;
  display: inline-block;
}

/* Mobile view */
@media (max-width: 991px) {
  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
    left: 0 !important;
  }

  .timeline-item::before {
    left: 6px;
  }
}

/* learn section */
.learn-section {
  background: #ffffff;
}

/* Titles */
.section-title {
  font-size: 32px;
  font-weight: 500;
  color: #333;
}

.section-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  color: #666;
}

/* Cards */
.learn-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.learn-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

.learn-card ul {
  padding-left: 18px;
  margin: 0;
}

.learn-card ul li {
  font-size: 14px;
  color: #555;
  margin-bottom: 6px;
}

/* Icon */
.learn-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

/* Hover Effect */
.learn-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }
}

/* Icon background box */
.icon-box {
  width: 56px;
  height: 56px;
  background: #eef2ff;
  /* soft blue background */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* Icon inside box */
.learn-icon {
  width: 28px;
  height: 28px;
}

.icon-box {
  width: 52px;
  height: 52px;
  background-color: #eef1ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box img {
  width: 26px;
  height: 26px;
}


.learn-icon {
  width: 26px;
  height: 26px;
  display: block;
}

/* industry section */
.industry-section {
  background-color: #1f3f63;
}

.text-highlight {
  color: #B8E882;
}

.industry-list {
  padding-left: 0;
  list-style: none;
}

.industry-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #ffffff;
}

.industry-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #B8E882;
  font-size: 20px;
  line-height: 1;
}

/* Stats badge */
.stats-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 14px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Mobile Fix */
@media (max-width: 768px) {
  .stats-badge {
    position: static;
    transform: none;
    margin-top: 16px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .industry-section img {
    max-height: 380px;
    object-fit: cover;
  }

  .stats-badge {
    padding: 12px 20px;
    gap: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .industry-section img {
    max-height: 280px;
    border-radius: 18px;
  }



  .stats-badge h5 {
    font-size: 16px;
  }

  .stats-badge small {
    font-size: 12px;
  }
}

@media (max-width: 781px) {
  .stats-badge {
    width: 50%;
    padding: 10px 16px;
    gap: 16px;
  }
}

/*  carrer benefits */
.career-benefits {
  background-color: #ffffff;
}

.career-benefits h2 {
  font-size: 32px;
  color: #333;
}

.career-benefits p {
  font-size: 16px;
  max-width: 720px;
  margin: auto;
}

/* Card */
.benefit-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Icon */
.icon-box {
  width: 52px;
  height: 52px;
  background-color: #eef1ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-box img {
  width: 26px;
  height: 26px;
}

/* Text */
.benefit-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 14.5px;
  color: #666;
  line-height: 1.6;
}

/* Mobile Center */
@media (max-width: 576px) {
  .benefit-card {
    text-align: center;
  }

  .icon-box {
    margin-left: auto;
    margin-right: auto;
  }
}

/* cta section */
.cta-section {
  background: url("/src/global_industry.webp") center center / cover no-repeat;
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.cta-overlay {
  background: rgba(11, 40, 70, 0.85);
  width: 100%;
  padding: 60px 0;
}

/* Text */
.cta-title {
  font-size: 38px;
  font-weight: 500;
  color: #fff;
}

.cta-title span {
  color: #B8E882
}

.cta-text {
  font-size: 16px;
  color: #d9e4f0;
  max-width: 700px;
  margin: 16px auto 0;
}

/* Buttons */
.cta-buttons .btn {
  padding: 12px 30px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .cta-section {
    min-height: 340px;
    /* smaller image */
  }

  .cta-title {
    font-size: 28px;
  }

  .cta-overlay {
    padding: 50px 20px;
  }
}

@media (max-width: 576px) {
  .cta-section {
    min-height: 300px;
  }

  .cta-buttons .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* video */
.brand-video-section {
  background: #f8f9fa;
}

.video-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Play Button Circle */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95px;
  height: 95px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.volume-btn {
  position: absolute;
  bottom: 20px;
  right: 80px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
}
/* Blue Triangle */
.play-btn span {
  width: 0;
  height: 0;
  border-left: 24px solid #2f5bff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .play-btn {
    width: 70px;
    height: 70px;
  }

  .play-btn span {
    border-left: 18px solid #2f5bff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}



/* Make video taller */
.video-container video {
  width: 100%;
  height: 500px;
  /* 👈 Increase height */
  object-fit: cover;
  /* Prevent distortion */
}

/* Responsive height */
@media (max-width: 992px) {
  .video-container video {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .video-container video {
    height: 260px;
  }
}

.video-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  white-space: nowrap;
  /* Force 1 line */
  overflow: hidden;
  text-overflow: ellipsis;
  /* Add ... if too long */
  max-width: 90%;
}

@media (max-width: 768px) {
  .video-caption {
    font-size: 13px;
    /* Smaller font */
    padding: 6px 12px;
    /* Less padding */
    bottom: 10px;
    /* Slightly closer */
  }
}


.video-container {
  position: relative;
  overflow: hidden;
}

.video-toggle {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
}

.video-toggle:hover {
  background: rgba(0, 0, 0, 0.9);
}

/*  e catgloue */
/* Section */
.catalog-section {
  padding: 80px 0;
}

/* Heading */
.catalog-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
}

.catalog-subtitle {
  text-align: center;
  margin-bottom: 30px;
}

/* Wrapper */
.flip-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

/* Flipbook */
#flipbook {
  margin: auto;
}

/* Page */
#flipbook .page {
  background: #fff;
  overflow: hidden;
}

/* Image */
#flipbook img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* IMPORTANT */
}

/* Shadow */
#flipbook .page {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn {
  margin: 5px;
}

/* COVER PAGE */
.cover-content {
  display: flex;
  height: 100%;
}

.cover-left {
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cover-left h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

.cover-left p {
  font-size: 15px;
  line-height: 1.6;
}

.cover-right {
  width: 50%;
}

.cover-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* END PAGE */
.end-page {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.end-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.end-content p {
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {

  .cover-content {
    flex-direction: column;
  }

  .cover-left,
  .cover-right {
    width: 100%;
  }

  .cover-left {
    padding: 20px;
    text-align: center;
  }
}

/* Fix wide screen stretching issue */
.flip-wrapper {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

#flipbook {
  width: 100%;
}

/* Mobile optimization for end page */
@media (max-width: 480px) {

  .end-page h1 {
    font-size: 24px !important;
    line-height: 1.2;
  }

  .end-page p {
    font-size: 14px !important;
    margin-top: 8px;
  }

  .end-page .btn,
  .end-page button {
    font-size: 13px !important;
    padding: 8px 14px !important;
    border-radius: 6px;
  }

  .end-page {
    padding: 15px 10px !important;
    text-align: center;
  }
}