* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Top Bar */
.top-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  padding: 8px 0;
}

.top-bar .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar .call-text {
  color: #33a0d6;
}

.top-bar .top-links a {
  margin-left: 20px;
  color: #33a0d6;
  text-decoration: none;
  font-size: 14px;
}

.top-bar .top-links a:hover {
  text-decoration: underline;
}

/* Main Header */
.main-header {
  background: #fff;
  padding: 15px 0;
}

.main-header .container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
}

.logo-text {
  font-size: 18px;
  color: #333;
}

/* Navbar */
.navbar ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar ul li {
  margin-left: 25px;
  position: relative;
}

.navbar ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  padding-bottom: 5px;
  transition: all 0.3s;
}

.navbar ul li a.active,
.navbar ul li a:hover {
  border-bottom: 2px solid #333;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 180px;
  margin: 0;
  padding: 0;
  list-style: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  border-radius: 4px;
}

.dropdown-content li {
  width: 100%;
}

.dropdown-content li a {
  display: block;
  padding: 10px 16px;
  color: #333;
  font-weight: normal;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s;
}

.dropdown-content li a:hover {
  background-color: #f5f5f5;
}

.dropdown-content:hover {
  display: block;
}

/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Carousel Text */
.carousel-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.carousel-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.carousel-content p {
  font-size: 20px;
  margin-bottom: 25px;
}

.carousel-content .btn {
  padding: 12px 25px;
  background: #0078d4;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.carousel-content .btn:hover {
  background: #005fa3;
}

/* Tabs Section */
.services-section {
  padding: 70px 20px;
  color: #fff;
  font-family: Arial, sans-serif;
}

.tabs {
  display: flex;
  justify-content: center;
  background: #fff;
  border-radius: 5px 5px 0 0;
}

.tab-link {
  flex: 1;
  text-align: center;
  padding: 30px;
  border: none;
  background: transparent;
  font-size: 20px;
  font-weight: bold;
  color: #33a0d6;
  cursor: pointer;
  transition: all 0.3s;
  clip-path: polygon(20% 0, 80% 0, 100% 100%, 0% 100%);
}

.tab-link.active {
  background: #2f3542;
  color: #fff;
}

.tab-content {
  background-color: #2f3542;
  display: none;
  padding: 50px 20px;
}

.tab-content.active {
  display: block;
  width: 100%;
  margin: 0;
  padding: 60px 80px;
  box-sizing: border-box;
}

/* Services Section */
.services-section {
  padding: 40px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
  text-align: center;
}

.services-section2 {
  width: 90% !important;
  margin: 0 auto !important;
  padding: 20px 20px;
  padding-top:0px !important;
  background: #fff;
  text-align: center;
}

.services-section .section-title {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
  text-transform: uppercase;
}

.services-section .section-subtitle {
  font-size: 15px;
  font-style: italic;
  color: #666;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.service-box {
  background: #fff;
  padding: 20px;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}

.service-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.service-header span {
  border: 2px solid #f1c40f;
  padding: 2px 5px;
}

.service-header .check-icon {
  color: #f4c542;
  font-size: 18px;
  margin-right: 8px;
  font-weight: bold;
}

.service-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  color: #333;
  text-transform: uppercase;
}

.service-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
  text-align: justify;
}

.service-box a {
  color: #1e73be;
  text-decoration: none;
}

.service-box a:hover {
  text-decoration: underline;
}

.service-box img {
  width: 100%;
  margin: 15px 0 5px;
  display: block;
  border: 1px solid #ddd;
}

.service-box small {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  font-style: italic;
}

.service-box .btn {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #f4c542;
  color: #333;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  background: #fff;
  transition: 0.3s ease;
  text-decoration: none;
}

.service-box .btn:hover {
  background: #f4c542;
  color: #fff;
}

/* Section 4 */
.logistics-image-section {
  background: #fff;
}

.whychoose-section {
  padding: 20px 20px;
  max-width: 1200px;
  margin: auto;
}

.whychoose-section h1 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0 !important;
  color: #2c2c2c;
}

.logistics-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logistics-image-left {
  flex: 1.2;
  padding: 10px;
  text-align: justify;
}

.logistics-image-left h1 {
  font-size: 2.5rem;
  color: #454950;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
  line-height: 1.15;
}

.logistics-image-left p {
  color: #707070;
  line-height: 1.7;
  margin: 0;
}

.logistics-image-left strong {
  color: #272a32;
  font-weight: 600;
}

.logistics-image-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logistics-image-right img {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .logistics-image-container {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }
  .logistics-image-left {
    /* margin-bottom: 30px; */
  }
  .logistics-image-right img {
    max-width: 350px;
  }
  .logistics-image-left h1 {
    font-size: 2rem;
  }
  .logistics-image-left p {
    font-size: 1rem;
  }
}

/* Content Layout */
.content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.content-text {
  flex: 1;
  padding: 80px;
}

.content-text h2 {
  margin-bottom: 15px;
  font-size: 35px;
  text-align: left;
}

.content-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  text-align: left;
  font-size: 18px !important;
}

.services-list {
  list-style: none;
  padding: 0;
}

.services-list li {
  margin: 8px 0;
  position: relative;
  padding-left: 20px;
  text-align: left;
  color: #f4c542;
}

.services-list li::before {
  content: "✔";
  color: #f1c40f;
  position: absolute;
  left: 0;
}

/* Chart Bars */
.content-chart {
  flex: 1;
  display: flex;
  padding: 50px;
  justify-content: space-around;
  align-items: flex-end;
}

.bar {
  width: 60px;
  background: #ddd;
  height: 300px;
  margin: 0 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #000;
  font-weight: bold;
  padding: 10px;
  border-radius: 7px;
  overflow: hidden;
}

.bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: #f1c40f;
  z-index: 0;
  animation: growUp 1.5s ease-out forwards;
}

.bar span {
  position: relative;
  z-index: 1;
  animation: textColorChange 1.5s ease-out forwards;
}

@keyframes growUp {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

@keyframes textColorChange {
  0% {
    color: #000;
  }
  100% {
    color: #fff;
  }
}

/* Freight Section */
.freight-section {
  padding: 0px 20px;
  max-width: 1200px;
  margin: auto;
}

.freight-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2c2c2c;
}

.freight-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

.freight-left {
  flex: 1 1 45%;
  text-align: center;
}

.freight-left img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.freight-right {
  flex: 1 1 50%;
}

.freight-right p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #444;
  text-align: justify;
}

.freight-right h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 25px 0 15px;
  color: #2c2c2c;
}

.freight-right strong {
  color: #1d3557;
}

.freight-right a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.freight-right a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .freight-content {
    flex-direction: column;
  }
  .freight-left,
  .freight-right {
    flex: 1 1 100%;
  }
}

/* Benefits Section */
.benefits-section {
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
}

.benefits-section h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #2c2c2c;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.benefit-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d3557;
}

.benefit-card ul {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
}

.benefit-card ul li {
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

.benefit-card strong {
  color: #2c2c2c;
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Logistics Container */
.logistics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.simplify.service h1 {
  color: #333;
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
  text-transform: uppercase;
}

.logistics-block {
  margin-bottom: 38px;
}

.logistics-block h2 {
  color: #222;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.logistics-block p {
  color: #4f5864;
  font-size: 1.06rem;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

@media (max-width: 600px) {
  .simplify.service {
    padding: 0;
  }
  .logistics-container {
    padding: 0 10px;
  }
  .simplify.service h1 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  .logistics-block h2 {
    font-size: 1.07rem;
    padding-top: 10px !important;
  }
  .logistics-block p {
    font-size: 1rem;
  }
}

/* Partners Section */
.partners-section {
  padding: 0px 20px 30px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.partners-section h2 {
  font-size: 30px !important;
  font-weight: 700;
  margin-bottom: 40px;
  color: #2c2c2c;
}

.partners-slider {
  margin: auto;
  position: relative;
  max-width: 1140px !important;
  overflow: hidden;
}

.partners-track {
  display: flex;
  width: 200%;
  animation: scroll 20s linear infinite;
}

.partner-logo {
  flex: 0 0 auto;
  width: 180px;
  margin: 0 40px;
}

.partner-logo img {
  width: 80%;
  height: auto;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.partner-logo img:hover {
  filter: grayscale(0%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .partner-logo {
    width: 120px;
    margin: 0 20px;
  }
}

/* Contact Section */
.contact-section {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  color: #000;
  padding: 60px 40px;
}

.contact-left {
  flex: 1 1 40%;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-left h3 {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  color: #ddd;
}

.contact-left h2 {
  font-size: 28px;
  margin: 15px 0;
  font-weight: 700;
  color: #000;
}

.contact-left p {
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0;
}

.contact-left a {
  color: #00aaff;
  text-decoration: none;
}

.contact-left a:hover {
  text-decoration: underline;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #00aaff;
}

.contact-right {
  flex: 1 1 40%;
  padding-left: 30px;
  padding-top: 60px;
}

.contact-right p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #ccc;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border: 1px solid #555;
  background: transparent;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form button {
  background: #ffcc00;
  color: #222;
  font-size: 15px;
  font-weight: bold;
  padding: 14px 25px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #e6b800;
}

/* Footer */
.footer-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.footer-section {
  background: rgb(45, 52, 66);
  color: #c9ced6;
  padding-top: 50px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-col {
  min-width: 0;
}

.footer-title {
  color: #e5e7eb;
  font-size: 18px;
  letter-spacing: 0.5px;
  margin: 6px 0 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-logo {
  color: #e5e7eb;
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 800;
}

.footer-section p {
  margin: 0 0 14px;
}

.footer-address {
  font-style: normal;
  margin-bottom: 10px;
}

.footer-contact span {
  color: #9aa3af;
}

.footer-contact a {
  color: #c9ced6;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin: 8px 0;
  position: relative;
}

.footer-links a {
  color: #c9ced6;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links .indent {
  padding-left: 28px;
}

.footer-links .indent::before {
  left: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.footer-social a {
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f6b83d;
  color: #2b2f36;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
}

.icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 0px 0px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .footer-logo {
    font-size: 24px;
  }
}

/* Contact Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .contact-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  
  }

  .contact-right {
    padding-left: 0;
  }
}

.footer-below {
  text-align: center;
  color: #fff;
  background-color: #2d3442;
  padding: 30px 0 20px;
}

.footer-below p {
  font-size: 18px;
}

/* Mobile */
@media (max-width: 768px) {
  .carousel-content h1 {
    font-size: 22px;
    margin-bottom: 0 !important;
  }

  .hero-carousel {
    height: 50vh;
  }

  h1 {
    margin-top: 0 !important;
    line-height: 35px !important;
    font-size: 22px !important;
  }

  .tab-link {
    padding: 20px !important;
    font-size: 15px !important;
  }

  .tab {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .tab-link.active {
    padding: 8px;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 20px !important;
  }

  .tab-content.active,
  .content-text,
  .content-chart {
    padding: 10px 5px !important;
  }

  .services-section {
    padding: 20px 0;
  }

  .services-section .section-title,
  .freight-section h2,
  .whychoose-section h1,
  .benefits-section h2 {
    font-size: 20px !important;
    margin-bottom: 10px !important;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .logistics-image-container {
    flex-direction: column-reverse;
  }

  .simplify.service h1 {
    font-size: 20px !important;
    margin-bottom: 0 !important;
    text-align: center;
  }

  .service-box {
    padding: 0;
  }

  .contact-right {
    padding: 0 !important;
  }

  .footer-below p {
    font-size: 15px;
  }
}
