body {
  margin: 0;
  font-family: 'Segoe UI', 'Poppins', Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
}

header {
  background-color: #003366;
  padding: 10px 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-toggle {
  display: flex;
  align-items: center;
}

.logo-container img {
  width: 180px;
  height: auto;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  margin-left: 20px;
}

.nav-container {
  display: flex;
  align-items: center;
}

.nav-container .menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-container .menu li {
  margin: 0 15px;
}

.nav-container .menu a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-container .menu a:hover {
  color: #ffcc00;
}

@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }

  .logo-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-container {
    width: 100%;
  }

  .nav-container .menu {
    display: none;
    flex-direction: column;
    background-color: #003366;
    width: 100%;
    padding: 15px 0;
    text-align: center;
  }

  .nav-container .menu.active {
    display: flex;
  }

  .nav-container .menu li {
    margin: 10px 0;
  }
}

.hero {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  text-shadow: 0 0 5px black;
  max-width: 90%;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 18px;
}

.cards, .services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  padding: 50px 20px;
}

.card, .service {
  background: #fff;
  border-radius: 12px;
  width: 45%;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover, .service:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.3);
}

.card img, .service img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  border-radius: 5px;
  margin-bottom: 15px;
}

.card h3, .service h3 {
  font-size: 18px;
  color: #003366;
  margin: 10px 0;
}

.card p, .service p {
  font-size: 14px;
  color: #555;
}

h2 {
  text-align: center;
  font-size: 28px;
  color: #003366;
  margin-top: 50px;
  margin-bottom: 30px;
}

footer {
  background-color: #111;
  color: #ccc;
  padding: 60px 20px 20px;
  font-family: 'Poppins', Arial, sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer-content div {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-content h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ffcc00;
  padding-bottom: 8px;
}

.footer-content p,
.footer-content a {
  font-size: 14px;
  color: #bbb;
  line-height: 1.8;
}

.footer-content a:hover {
  color: #ffcc00;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 13px;
  color: #777;
}

.footer-content ul {
  list-style: none;
  padding: 0;
}

.footer-content ul li {
  margin-bottom: 10px;
}

.footer-content .social-icons {
  margin-top: 15px;
}

.footer-content .social-icons a {
  color: #bbb;
  margin-right: 12px;
  font-size: 18px;
}

.footer-content .social-icons a:hover {
  color: #ffcc00;
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 24px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .cards, .services {
    flex-direction: column;
    align-items: center;
  }

  .card, .service {
    width: 90%;
    margin-bottom: 20px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-content div {
    margin: 15px 0;
  }
} 
/* === Why Choose Us Section === */
.why-choose-us {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  margin-top: 40px;
}

.why-choose-us h2 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
}

.why-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.why-card {
  background-color: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  width: 300px;
  max-width: 90%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.why-icon {
  font-size: 36px;
  color: #003366;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  color: #003366;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-cards {
    flex-direction: column;
    align-items: center;
  }

  .why-card {
    width: 90%;
  }
}
/* === Testimonial Carousel Section === */
.testimonial-carousel {
  background-color: #d43d33;
  color: white;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.testimonial-slider {
  position: relative;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.testimonial-text {
  flex: 1;
  padding: 30px 40px;
  font-size: 18px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-text i {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.testimonial-text h4 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: normal;
}

.testimonial-img {
  flex: 1;
}

.testimonial-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.testimonial-dots {
  text-align: center;
  margin-top: 20px;
}

.testimonial-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.testimonial-dots .dot.active {
  background-color: #fff;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 768px) {
  .testimonial-content {
    flex-direction: column;
  }

  .testimonial-text, .testimonial-img {
    padding: 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }
}
.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 50px 5%;
  background-color: #fff;
}

.service-card {
  flex: 1 1 30%;
  height: 540px; /* slightly increased height */
  color: white;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Background images */
.service-card.ocean {
  background-image: url('images/ocean-freight.jpg');
  background-position: center bottom;
}

.service-card.logistics {
  background-image: url('images/logistics.jpg');
}

.service-card.air {
  background-image: url('images/air-freight.jpg');
}

/* Overlay container */
.service-card .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Scrollable text content */
.overlay-content {
  overflow-y: auto;
  max-height: calc(100% - 60px); /* keeps space for button */
  padding-right: 5px; /* optional scrollbar spacing */
}

.service-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
}

.service-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.service-card p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
  color: #fff;
}

/* Always visible button */
.read-more-btn {
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  padding: 10px 20px;
  font-weight: 600;
  width: fit-content;
  transition: background 0.3s ease, color 0.3s ease;
  margin-top: 20px;
  align-self: flex-start;
}

.read-more-btn:hover {
  background: #fff;
  color: #000;
}
/* --- Begin msmorningstar.org Our Products CSS --- */
.our-products {
  background: #f0f0f0;
  padding: 80px 0;
}
.our-products .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.our-products h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 8px;
}
.our-products .subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
  position: relative;
}
.our-products .subtitle::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: #d9534f;
  margin: 10px auto 0;
}
.our-products .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* Media queries go directly after this */
@media (max-width: 992px) {
  .our-products .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .our-products .grid {
    grid-template-columns: 1fr;
  }
}

.our-products .item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.our-products .item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.our-products .caption {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  transition: opacity 0.3s ease;
}
.our-products .caption h3 {
  margin: 0;
  font-size: 20px;
}
.our-products .caption span {
  margin-top: 4px;
  font-size: 14px;
}
.our-products .item:hover img {
  transform: scale(1.1);
}
.our-products .item:hover .caption {
  opacity: 0;
}
.product-title {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.2rem;
  text-align: center;
  color: white; /* or your preferred text color */
}

.product-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: #e63946; /* Red underline */
  border-radius: 2px;
}

/* --- End msmorningstar.org Our Products CSS --- */
/* ====== Internal Page Styling ====== */

.page-content {
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}


.page-content h1 {
  font-size: 32px;
  color: #003366;
  margin-bottom: 20px;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 10px;
}

.page-content h2 {
  font-size: 24px;
  margin-top: 30px;
  color: #333;
  border-left: 5px solid #f39c12;
  padding-left: 12px;
}

.page-content p {
  font-size: 16px;
  color: #555;
  margin: 15px 0;
}

.page-content ul {
  padding-left: 20px;
  margin-top: 15px;
}

.page-content ul li {
  list-style-type: disc;
  margin-bottom: 10px;
  color: #444;
}

/* ====== Contact Form Styling ====== */

form {
  margin-top: 30px;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 18px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

form input:focus,
form textarea:focus {
  border-color: #f39c12;
  box-shadow: 0 0 5px rgba(243, 156, 18, 0.4);
  outline: none;
}

form button {
  background-color: #f39c12;
  color: #fff;
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #e67e22;
}

/* ====== Responsive Adjustments ====== */

@media screen and (max-width: 600px) {
  .page-content {
    padding: 30px 15px;
  }

  .page-content h1 {
    font-size: 26px;
  }

  .page-content h2 {
    font-size: 20px;
  }
}
.content-img {
  display: block;
  margin: 20px auto; /* This centers it horizontally */
  max-width: 90%;     /* Ensures it's responsive */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.hero-section {
  background: url('images/about-banner.jpg') no-repeat center center/cover;
  height: 400px;
  position: relative;
  text-align: center;
  color: white;
}
.hero-section .overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-section h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.hero-section p {
  font-style: italic;
}
.red-underline {
  width: 60px;
  height: 3px;
  background-color: #e63946;
  margin: 1rem auto 0;
}
.red-underline-sm {
  width: 40px;
  height: 3px;
  background-color: #e63946;
  margin: 0.5rem 0;
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 4rem 2rem;
}
.about-text {
  flex: 1 1 60%;
  padding-right: 2rem;
}
.about-image {
  flex: 1 1 35%;
}
.about-image img {
  width: 100%;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3rem 2rem;
  gap: 2rem;
}
.two-column > div {
  flex: 1 1 45%;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3rem 2rem;
  gap: 2rem;
}
.feature-box {
  flex: 1 1 45%;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 8px;
}
.feature-box img {
  height: 40px;
  margin-bottom: 1rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 60px;
  padding: 0 20px;
}

.about-feature i {
  flex-shrink: 0;
}

.about-feature-text {
  flex: 1;
}

.about-feature h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #002147;
  font-weight: 700;
}

.about-feature p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}
/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Main header layout */
.site-header {
  background: #004aad; /* Bright bold blue */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
}


.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo img {
  height: 60px;
}

/* Main nav styles */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: white; /* was #333 */
  font-weight: 500;
  position: relative;
}


/* Dropdown */
.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown-content {
  display: none;
  position: absolute;
  background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  top: 100%;
  left: 0;
  min-width: 200px;
  z-index: 99;
}

.main-nav .dropdown-content li {
  display: block;
}

.main-nav .dropdown-content a {
  padding: 10px 15px;
  display: block;
  color: #333;
  white-space: nowrap;
}

/* Hover behavior for desktop */
@media (min-width: 769px) {
  .main-nav .dropdown:hover > .dropdown-content {
    display: block;
  }
}

/* Mobile menu styles */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.main-nav {
  transition: max-height 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    overflow: hidden;
    max-height: 0;
  }

  .main-nav.open {
    max-height: 1000px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid #eee;
    width: 100%;
    text-align: left;
  }

  .main-nav .dropdown .dropdown-content {
    position: static;
    box-shadow: none;
    background: #f9f9f9;
  }

  .main-nav .dropdown.open .dropdown-content {
    display: block;
  }

  .menu-toggle {
    display: block;
  }
}
.hero-section {
  background: url('images/hero-bg.jpg') center center/cover no-repeat;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-section .overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 8px;
}

.red-underline {
  width: 60px;
  height: 4px;
  background: red;
  margin: 15px auto 0;
}

.page-content {
  display: flex;
  padding: 50px;
  background: #f9f9f9;
  flex-wrap: wrap;
  justify-content: space-between;
}

.text-block {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
}

.text-block h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.side-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.side-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 50px;
  background: white;
}

.service-item {
  background: #f4f4f4;
  padding: 30px 20px;
  text-align: center;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.service-item img {
  width: 60px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.service-item a {
  text-decoration: none;
  color: red;
  font-weight: bold;
}

.service-item:hover {
  background: #e8e8e8;
  transform: translateY(-5px);
}
/* Contact Hero Section */
.contact-hero {
  background: url('images/contact-hero.jpg') no-repeat center center/cover;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .overlay {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  text-align: center;
  color: #fff;
  width: 100%;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-hero p {
  font-size: 18px;
}

.red-underline {
  width: 60px;
  height: 4px;
  background-color: red;
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Contact Form Section */
.contact-form-section {
  padding: 60px 20px;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.form-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.form-image {
  flex: 1;
  min-width: 300px;
}

.form-image img {
  width: 100%;
  border-radius: 10px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  padding: 12px 20px;
  font-size: 16px;
  background-color: red;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #cc0000;
}

/* Responsive */
@media (max-width: 768px) {
  .form-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .contact-hero h1 {
    font-size: 32px;
  }

  .contact-hero p {
    font-size: 16px;
  }
}
/* */
/* Enhanced Service Page Styles */
.service-list {
  margin: 20px 0;
  padding-left: 20px;
}

.service-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
}

.service-list li:before {
  content: "•";
  color: #d43d33;
  font-size: 20px;
  position: absolute;
  left: 0;
}

.about-feature {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 8px;
  margin: 50px 0;
  display: flex;
  align-items: center;
}

.about-feature i {
  margin-right: 30px;
  min-width: 50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .image-text-row {
    flex-direction: column;
  }
  
  .about-feature {
    flex-direction: column;
    text-align: center;
  }
  
  .about-feature i {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Dangerous Goods Specific Styles */
.warning-box {
  background: #fff8e6;
  border-left: 4px solid #ffcc00;
  padding: 20px;
  margin: 40px 0;
  display: flex;
  align-items: center;
}

.warning-box i {
  color: #ff9900;
  font-size: 24px;
  margin-right: 15px;
}

.warning-box p {
  margin: 0;
  color: #333;
}

/* Enhanced DG Service Items */
.service-item[alt*="DG"] {
  border-top: 3px solid #d43d33;
}

/* Australia Specific Styles */
.aqis-badge {
  background: #e6f7ff;
  border: 1px solid #91d5ff;
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
}
/* Warehouse Table Styles */
.specs-table {
  margin: 50px 0;
  overflow-x: auto;
}

.specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table th, 
.specs-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.specs-table th {
  background-color: #003366;
  color: white;
}

.specs-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
/* OOG Specific Styles */
.specs-box {
  background: #f5f5f5;
  padding: 25px;
  border-radius: 8px;
  margin-top: 40px;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.spec-item {
  background: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* UAE Specific Styles */
.gcc-badge {
  background: #f0f8ff;
  border: 1px solid #003366;
  padding: 10px 15px;
  display: inline-block;
  margin-top: 15px;
  border-radius: 4px;
}
/* Brazil Tax Box */
.tax-box {
  background: #fff5f5;
  border-left: 4px solid #d43d33;
  padding: 20px;
  margin-top: 30px;
}

.tax-box h4 {
  color: #d43d33;
  margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .specs-grid {
    grid-template-columns: 1fr;
  }
  
  .image-text-row .text {
    padding-top: 20px;
  }
}
/* LCL Pricing Box */
.pricing-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  padding: 20px;
  border-radius: 5px;
  margin-top: 30px;
}

.pricing-box h3 {
  color: #003366;
  margin-bottom: 15px;
}

/* Door-to-Door Timeline */
.timeline {
  margin: 40px 0;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
}

.step-number {
  background: #d43d33;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-weight: bold;
}

.step p span {
  color: #d43d33;
  font-weight: 600;
}

/* Saudi Certification Box */
.cert-box {
  background: #f5f5f5;
  padding: 20px;
  border-left: 4px solid #003366;
  margin-top: 30px;
}

.cert-box h4 {
  color: #003366;
  margin-bottom: 10px;
}

.cert-box ul {
  margin-top: 10px;
  padding-left: 20px;
}

@media (max-width: 768px) {
  .timeline-steps {
    flex-direction: column;
  }
  
  .step {
    margin-bottom: 20px;
  }
}
/* New Zealand Biosecurity Warning */
.bio-warning {
  background: #f0fff0;
  border: 1px solid #2ecc71;
  padding: 15px;
  border-radius: 5px;
  margin-top: 30px;
}

.bio-warning h4 {
  color: #27ae60;
  margin-bottom: 10px;
}

.bio-warning h4 i {
  margin-right: 10px;
}

/* Lebanon Document Grid */
.doc-box {
  margin-top: 40px;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.doc-grid div {
  background: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.doc-grid i {
  color: #003366;
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

/* North Africa Country Cards */
.country-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.country-card {
  flex: 1;
  min-width: 200px;
  background: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.country-card h4 {
  display: flex;
  align-items: center;
  color: #003366;
}

.country-card img {
  width: 30px;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .country-cards {
    flex-direction: column;
  }
  
  .doc-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* Broker Services Tab System */
.country-selector {
  margin-top: 40px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.country-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 10px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #666;
}

.tab-btn.active {
  color: #003366;
  border-bottom: 3px solid #d43d33;
}

.tab-content {
  display: none;
  padding: 10px;
}

.tab-content.active {
  display: block;
}

/* Warehouse Table Styles */
.specs-table {
  margin-top: 40px;
  overflow-x: auto;
}

.specs-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.specs-table th {
  background-color: #003366;
  color: white;
  padding: 12px;
  text-align: left;
}

.specs-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #ddd;
}

.specs-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

@media (max-width: 768px) {
  .country-tabs {
    flex-direction: column;
  }
  
  .tab-btn {
    text-align: left;
    border-bottom: 1px solid #eee;
  }
  
  .specs-table {
    font-size: 14px;
  }
}
/* Process Steps */
.process-steps {
  margin-top: 40px;
}

.step {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 15px;
  background: #f5f5f5;
  border-radius: 5px;
}

.step-number {
  background: #d43d33;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  font-weight: bold;
}

/* Saudi Specific Styles */
.arabic-doc-sample {
  direction: rtl;
  font-family: 'Arial', sans-serif;
  background: #f9f9f9;
  padding: 15px;
  margin-top: 20px;
  border-right: 3px solid #003366;
}

@media (max-width: 600px) {
  .process-steps .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin-right: 0;
    margin-bottom: 10px;
  }
}