/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(0, 0%, 0%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);
  --text-color: hsl(220, 8%, 20%);
  --text-color-light: hsl(220, 4%, 55%);
  --dark-blue: hsl(220, 62%, 39%);
  --dark-blue-hover: hsl(220, 70%, 44%);

  /*========== Typography ==========*/
  --body-font: "Montserrat", sans-serif;

  /*========== Font sizes ==========*/
  --biggest-font-size: 2.5rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.5rem;
  --h4-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.75rem;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== Line height ==========*/
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --biggest-font-size: 3rem;
    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-regular);
  color: var(--text-color);
  line-height: var(--line-height-normal);
  letter-spacing: 0.025em;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black-color);
  font-weight: var(--font-semi-bold);
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-bold);
  letter-spacing: -0.02em;
}

h2 {
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
}

h4 {
  font-size: var(--h4-font-size);
  font-weight: var(--font-medium);
}

p {
  margin-bottom: 1rem;
  line-height: var(--line-height-relaxed);
  color: var(--text-color);
}

a {
  text-decoration: none;
  color: var(--black-color);
  font-weight: var(--font-medium);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--dark-blue);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  letter-spacing: 0.025em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1400px;
  margin-inline: 1.5rem;
}

.section {
  padding: 4rem 0 2rem;
}

.section__title {
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  color: var(--black-color);
  text-align: center;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.section__subtitle {
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color-light);
  text-align: center;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-center {
  text-align: center;
}

.text-light {
  color: var(--text-color-light);
  font-weight: var(--font-regular);
}

.text-bold {
  font-weight: var(--font-bold);
}

.text-medium {
  font-weight: var(--font-medium);
}

/*=============== HEADER ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white-color);
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, 0.3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--black-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  font-weight: var(--font-bold);
  font-size: var(--h4-font-size);
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}
.nav__logo img{
  width:220px;
}
@media screen and (max-width: 480px){
  .nav__logo img{
    width:160px;
  }
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--white-color);
    padding-top: 1rem;
  }
  .nav__logo img{
    width:160px;
  }
}

.nav__link {
  color: var(--black-color);
  background-color: var(--white-color);
  font-weight:500 !important;
  font-size: 1.3rem !important;
  font-family: Arial, Helvetica, sans-serif;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
  letter-spacing: 0.025em;
}

.nav__link:hover {
  background-color: rgb(196, 196, 196);
  color: var(--dark-blue);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--black-color);
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: background-color 0.3s;
  letter-spacing: 0.025em;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: rgb(250, 250, 250);
  color: var(--dark-blue);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--white-color);
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
}

/*=============== MAIN CONTENT STYLES ===============*/
.main {
  padding-top: var(--header-height);
}

.hero {
  padding: 4rem 0;
  text-align: center;
}

.hero__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-bold);
  color: var(--black-color);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: var(--line-height-tight);
}

.hero__description {
  font-size: var(--h4-font-size);
  font-weight: var(--font-regular);
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: var(--line-height-relaxed);
}

.btn {
  display: inline-block;
  background-color: var(--black-color);
  color: var(--white-color);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  text-align: center;
  transition: all 0.3s ease;
  letter-spacing: 0.025em;
}

.btn:hover {
  background-color: var(--black-color-light);
  transform: translateY(-2px);
  color: var(--white-color);
}

.btn--outline {
  background-color: transparent;
  color: var(--black-color);
  border: 2px solid var(--black-color);
}

.btn--outline:hover {
  background-color: var(--black-color);
  color: var(--white-color);
}

/*=============== CARDS ===============*/
.card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card__title {
  font-size: var(--h3-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--black-color);
  margin-bottom: 1rem;
}

.card__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: var(--line-height-relaxed);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }

  .hero__title {
    font-size: var(--h1-font-size);
  }

  .hero__description {
    font-size: var(--normal-font-size);
  }
}

/* For medium devices */
@media screen and (min-width: 768px) {
  .section {
    padding: 6rem 0 2rem;
  }

  .hero {
    padding: 6rem 0;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: 4rem;
  }
  
  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }

  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    background-color: transparent;
  }

  .nav__link:hover {
    background-color: transparent;
    color: var(--dark-blue);
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;

    /* Enhanced dropdown styling */
    min-width: 280px;
    width: max-content;
    white-space: nowrap;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    background-color: var(--white-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding: 1rem 1.5rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
    letter-spacing: 0.025em;
    border-radius: 8px;
    margin: 0 0.5rem;
  }

  .dropdown__link:hover,
  .dropdown__sublink:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--dark-blue);
  }

  .dropdown__subitem .dropdown__link {
    padding: 0.875rem 1.25rem;
    font-size: var(--normal-font-size);
    font-weight: var(--font-medium);
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
    min-width: 220px;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }

  .section {
    padding: 8rem 0 2rem;
  }

  .hero {
    padding: 8rem 0;
  }
}

/* Breadcrumb Banner Section */
.breadcrumb-banner-section {
  padding-top: 60px;
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image */
.banner-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1200&h=800&fit=crop");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Blue Overlay */
.blue-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    50deg,
    rgba(19, 38, 98, 0.85) 0%,
    rgba(20, 52, 139, 0.9) 100%
  );
  z-index: 2;
}

.bread-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
  width: 100%;
}

/* Main Content Layout */
.breadcrumb-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 60px;
  align-items: center;
  height: 100%;
}

/* Left Side Content */
.breadcrumb-left-content {
  color: #fff;
  animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.page-title-wrapper {
  margin-bottom: 30px;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.5;
  font-weight: 400;
}

/* Breadcrumb Navigation - Plain Text Links */
.breadcrumb-navigation {
  margin-top: 25px;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 4px 0;
  transition: all 0.3s ease;
  position: relative;
}

.breadcrumb-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #00b04f;
  transition: width 0.3s ease;
}

.breadcrumb-link:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.breadcrumb-link:hover::after {
  width: 100%;
}

.breadcrumb-link i {
  font-size: 0.85rem;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin: 0 8px;
}

.breadcrumb-current {
  color: #00b04f;
  font-weight: 600;
  font-size: 0.95rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Right Side - Swinging Truck */
.breadcrumb-right-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.swinging-truck-wrapper {
  position: relative;
  animation: slideInFromTop 1.5s ease-out;
}

@keyframes slideInFromTop {
  0% {
    opacity: 0;
    transform: translateY(-100px);
  }
  70% {
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.swinging-truck-image {
  width: 300px;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
  animation: swingAnimation 4s ease-in-out infinite 1.5s;
  transform-origin: top center;
  position: relative;
  z-index: 2;
}

@keyframes swingAnimation {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
}

/* Loading state for truck image */
.swinging-truck-image[src=""] {
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.swinging-truck-image[src=""]:before {
  content: "🚛";
  font-size: 4rem;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .breadcrumb-banner-section {
    height: 320px;
  }

  .breadcrumb-content {
    gap: 40px;
  }

  .page-title {
    font-size: 3rem;
  }

  .swinging-truck-image {
    width: 250px;
    max-height: 200px;
  }
}

/* UPDATED MOBILE VIEW - Image First, Then Text */
@media (max-width: 768px) {
  .breadcrumb-banner-section {
    height: auto;
    min-height: 350px;
    padding: 40px 0;
  }

  .breadcrumb-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    /* CHANGED: Image appears first (order) */
    grid-template-rows: auto auto;
  }

  /* REORDER: Truck image comes first on mobile */
  .breadcrumb-right-content {
    order: 1; /* Image first */
    margin-bottom: 20px;
  }

  .breadcrumb-left-content {
    order: 2; /* Text second */
  }

  .bread-container {
    padding: 0 15px;
  }

  .page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .page-subtitle {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .breadcrumb-list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .swinging-truck-image {
    width: 220px;
    max-height: 170px;
  }

  .breadcrumb-navigation {
    margin-top: 15px;
  }

  .page-title-wrapper {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-banner-section {
    min-height: 320px;
    padding: 30px 0;
  }

  /* MOBILE SMALL: Maintain image-first order */
  .breadcrumb-content {
    gap: 25px;
  }

  .breadcrumb-right-content {
    order: 1; /* Image first */
    margin-bottom: 15px;
  }

  .breadcrumb-left-content {
    order: 2; /* Text second */
  }

  .page-title {
    font-size: 2rem;
    margin-bottom: 8px;
  }

  .page-subtitle {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .breadcrumb-link,
  .breadcrumb-current {
    font-size: 0.85rem;
  }

  .swinging-truck-image {
    width: 180px;
    max-height: 140px;
  }

  .breadcrumb-list {
    gap: 5px;
  }

  .breadcrumb-separator {
    margin: 0 5px;
  }

  .page-title-wrapper {
    margin-bottom: 15px;
  }

  .breadcrumb-navigation {
    margin-top: 12px;
  }
}

/* Enhanced hover effects */
.breadcrumb-banner-section:hover .swinging-truck-image {
  animation-duration: 2s;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .swinging-truck-image {
    animation: none;
  }

  .slideInLeft,
  .slideInFromTop {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===== Cargo Shipment Section Styles (Compact) ===== */
.cargo-section {
  padding: 50px 0;
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cargo-images {
  position: relative;
  flex: 1;
  max-width: 550px;
  padding-left: 40px;
}

.cargo-images .main-img {
  width: 550px;
  height: 720px; /* Increased height from 660px to 720px */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cargo-images .container-img {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 220px;
  height: auto;
  border-radius: 8px;
  animation: shake 3s ease-in-out infinite;
  padding: 8px;
}

/* Shaking animation for container image */
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(2px);
  }
}

.experience-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #00b04f;
  color: #fff;
  padding: 12px 16px;
  border-radius: 5px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.3);
}

.experience-badge .exp-number {
  font-size: 2rem;
  display: block;
  line-height: 1;
}

.experience-badge .exp-text {
  display: block;
  font-size: 1rem;
  font-weight: 400;
  margin-top: 3px;
}

.cargo-content {
  flex: 1;
  max-width: 550px;
  margin-left: 0.5rem;
  padding-right: 30px;
}

.cargo-content .section-badge {
  display: inline-block;
  color: #00b04f;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.cargo-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin: 0.4rem 0 1.2rem;
  line-height: 1.2;
}
.why-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.2;
}
.cargo-content h2 span {
  color: #00b04f;
}

.cargo-content p {
  line-height: 1.6;
  color: #555;
  margin-bottom: 1.8rem;
  font-size: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  background: #fff;
  border: 2px solid #00b04f;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(255, 106, 0, 0.1);
}

.feature-icon i {
  color: #00b04f;
  font-size: 1.3rem;
}

.feature-text h4 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: #0d1f3c;
  font-weight: 600;
}

.feature-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #777;
  line-height: 1.4;
}

.discover-btn {
  background: #fff;
  color: #0d1f3c;
  border: 2px solid #00b04f;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 12px rgba(70, 255, 53, 0.2);
}

.discover-btn:hover {
  background: #00b04f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(70, 255, 53, 0.2);
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .cargo-section {
    max-width: 95%;
    gap: 1.5rem;
    padding: 40px 20px;
    margin-top: 60px;
  }

  .cargo-images {
    max-width: 480px;
    padding-left: 20px;
  }

  .cargo-images .main-img {
    width: 100%;
    height: 350px;
  }

  .cargo-images .container-img {
    width: 180px;
    bottom: -15px;
    right: -15px;
  }

  .cargo-content {
    padding-right: 20px;
  }

  .cargo-content h2 {
    font-size: 1.8rem;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .cargo-section {
    flex-direction: column;
    gap: 2rem;
    padding: 30px 15px;
    margin-top: 40px;
    text-align: justify; /* Added justify alignment for mobile */
  }

  .cargo-images {
    order: 1; /* Images come first on mobile */
    max-width: 100%;
    padding-left: 0;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
  }

  .cargo-images .main-img {
    width: 100%;
    max-width: 400px;
    height: 320px; /* Increased mobile height */
  }

  .cargo-images .container-img {
    width: 150px;
    bottom: -12px;
    right: -12px;
  }

  .cargo-content {
    order: 2; /* Content comes second on mobile */
    margin-left: 0;
    padding-right: 0;
    max-width: 100%;
    text-align: justify; /* Justified text alignment */
  }

  .cargo-content .section-badge {
    display: block;
    text-align: center;
    margin-bottom: 1.2rem;
  }

  .cargo-content h2 {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .cargo-content p {
    text-align: justify;
    margin-bottom: 2rem;
    line-height: 1.7;
  }

  .features {
    align-items: stretch;
    text-align: left;
  }

  .features li {
    max-width: 100%;
    margin: 0;
    text-align: left;
  }

  .feature-text {
    text-align: left;
  }

  .feature-text p {
    text-align: justify;
  }

  .discover-btn {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
  }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
  .cargo-section {
    margin-top: 30px;
    padding: 50px 10px;
    text-align: justify;
  }

  .cargo-images .main-img {
    height: 300px; /* Further increased for small mobile */
    max-width: 350px;
  }

  .cargo-images .container-img {
    width: 180px;
    bottom: -20px;
    right: -20px;
  }

  .cargo-content h2 {
    font-size: 1.5rem;
  }

  .cargo-content p {
    font-size: 0.95rem;
    text-align: justify;
  }

  .experience-badge {
    padding: 8px 12px;
    top: 10px;
    right: 10px;
  }

  .experience-badge .exp-number {
    font-size: 1.2rem;
  }

  .experience-badge .exp-text {
    font-size: 0.65rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }

  .feature-icon i {
    font-size: 1.1rem;
  }

  .feature-text h4 {
    font-size: 1rem;
  }

  .feature-text p {
    font-size: 0.85rem;
    text-align: justify;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .cargo-section {
    gap: 3rem;
  }

  .cargo-images {
    max-width: 600px;
  }

  .cargo-images .main-img {
    width: 100%;
    height: 450px; /* Increased for large desktop */
  }

  .cargo-images .container-img {
    width: 250px;
  }

  .cargo-content h2 {
    font-size: 2.2rem;
  }
}

/* Why Choose Us Section - Optimized Size */
.why-choose-section {
  padding: 60px 0;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 400px;
}

/* Left Content Styles */
.left-content {
  flex: 1;
  max-width: 500px;
  padding: 20px 30px 20px 20px;
}

.section-tag {
  display: inline-block;
  background: transparent;
  color: #00b04f;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  position: relative;
}

.left-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin: 0 0 18px 0;
  padding: 0;
  line-height: 1.2;
}

.highlight {
  color: #00b04f;
}

.left-content > p {
  font-size: 0.95rem;
  color: #64748b;
  margin: 0 0 25px 0; /* Reduced from 30px */
  padding: 0;
  line-height: 1.6;
  max-width: 400px;
}

/* Features Grid - Reduced Gaps */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 10px; /* Reduced from 20px */
  margin: 0;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px; /* Reduced from 15px */
  padding: 8px 0; /* Reduced from 15px */
  margin: 0;
}

.feature-icon {
  background: #fff;
  border: 2px solid #00b04f;
  border-radius: 50%;
  width: 48px; /* Slightly reduced from 50px */
  height: 48px; /* Slightly reduced from 50px */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  box-shadow: 0 3px 12px rgba(70, 255, 53, 0.1);
  transition: all 0.3s ease;
}

.feature-icon:hover {
  background: #00b04f;
  transform: translateY(-2px);
}

.feature-icon i {
  color: #00b04f;
  font-size: 1.1rem; /* Slightly reduced from 1.2rem */
  transition: color 0.3s ease;
}

.feature-icon:hover i {
  color: #fff;
}

.feature-content {
  margin: 0;
  padding: 0;
}

.feature-content h4 {
  font-size: 0.95rem; /* Reduced from 1rem */
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 3px 0; /* Reduced from 6px */
  padding: 0;
}

.feature-content p {
  font-size: 0.8rem; /* Reduced from 0.85rem */
  color: #64748b;
  line-height: 1.4; /* Reduced from 1.5 */
  margin: 0;
  padding: 0;
}

/* Right Images Styles */
.right-images {
  flex: 1;
  position: relative;
  max-width: 450px;
  height: 450px;
  margin: 20px auto 20px 20px;
  padding: 10px;
}

.main-image-container {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  margin: 0;
  padding: 0;
}

.floating-image {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
  z-index: 2;
  margin: 0;
  padding: 0;
}

.container-image {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border: 6px solid #fff;
  margin: 0;
  padding: 0;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
  .why-choose-section {
    padding: 50px 0;
    margin: 30px 0;
  }

  .why-container {
    max-width: 95%;
    padding: 0 20px;
  }

  .content-wrapper {
    gap: 30px;
  }

  .left-content {
    padding: 15px 20px 15px 15px;
    max-width: 420px;
  }

  .left-content h2 {
    font-size: 2rem;
  }

  .left-content > p {
    margin: 0 0 20px 0; /* Reduced */
  }

  .right-images {
    max-width: 400px;
    height: 400px;
    margin: 15px auto 15px 15px;
  }

  .floating-image {
    right: -20px;
  }

  .container-image {
    width: 170px;
    height: 210px;
  }

  .features-grid {
    gap: 8px; /* Reduced from 18px */
  }

  .feature-item {
    padding: 6px 0; /* Reduced */
    gap: 10px; /* Reduced */
  }

  .feature-icon {
    width: 45px;
    height: 45px;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .why-choose-section {
    padding: 40px 0;
    margin: 20px 0;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 25px; /* Reduced from 30px */
    text-align: center;
  }

  .left-content {
    order: 2;
    padding: 15px 10px; /* Reduced */
    max-width: 100%;
  }

  .left-content h2 {
    font-size: 1.8rem;
    margin: 0 0 12px 0; /* Reduced */
  }

  .left-content > p {
    font-size: 0.9rem;
    margin: 0 0 18px 0; /* Reduced from 25px */
    max-width: 100%;
  }

  .right-images {
    order: 1;
    height: 350px;
    max-width: 90%;
    min-width: 300px;
    margin: 10px auto;
    padding: 5px;
  }

  .floating-image {
    top: 55%;
    right: -15px;
  }

  .container-image {
    width: 140px;
    height: 175px;
    border: 4px solid #fff;
  }

  .features-grid {
    text-align: left;
    gap: 8px; /* Reduced from 15px */
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px; /* Reduced from 20px */
    column-gap: 10px; /* Reduced from 15px */
  }

  .feature-item {
    justify-content: flex-start;
    max-width: 100%;
    margin: 0;
    padding: 6px 3px; /* Reduced from 10px 5px */
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 8px; /* Reduced */
  }

  .feature-icon {
    width: 42px; /* Reduced from 50px */
    height: 42px;
    margin-bottom: 4px; /* Reduced from 8px */
  }

  .feature-icon i {
    font-size: 1.1rem;
  }

  .feature-content {
    text-align: center;
  }

  .feature-content h4 {
    font-size: 0.9rem; /* Reduced */
    margin-bottom: 2px; /* Reduced from 5px */
  }

  .feature-content p {
    font-size: 0.75rem; /* Reduced from 0.8rem */
    line-height: 1.3; /* Reduced */
  }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
  .why-choose-section {
    padding: 30px 0;
    margin: 15px 0;
  }

  .why-container {
    padding: 0 15px;
  }

  .left-content {
    padding: 12px 8px; /* Reduced */
  }

  .left-content h2 {
    font-size: 1.6rem;
    margin: 0 0 10px 0; /* Reduced */
  }

  .left-content > p {
    font-size: 0.85rem;
    margin: 0 0 15px 0; /* Reduced from 20px */
  }

  .section-tag {
    font-size: 0.75rem;
    margin: 0 0 10px 0; /* Reduced */
  }

  .right-images {
    height: 280px;
    max-width: 95%;
    min-width: 280px;
    margin: 5px auto;
    padding: 5px;
  }

  .floating-image {
    right: -10px;
    top: 50%;
  }

  .container-image {
    width: 120px;
    height: 150px;
    border: 3px solid #fff;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 6px; /* Reduced from 15px */
  }

  .feature-item {
    gap: 6px; /* Reduced from 10px */
    padding: 5px 3px; /* Reduced */
  }

  .feature-icon {
    width: 38px; /* Reduced from 45px */
    height: 38px;
    margin-bottom: 3px; /* Reduced */
  }

  .feature-icon i {
    font-size: 1rem;
  }

  .feature-content h4 {
    font-size: 0.85rem; /* Reduced */
    margin: 0 0 2px 0; /* Reduced */
  }

  .feature-content p {
    font-size: 0.7rem; /* Reduced */
    line-height: 1.2;
  }
}

/* Large Mobile (between 481px and 640px) */
@media (min-width: 481px) and (max-width: 640px) {
  .right-images {
    height: 320px;
    max-width: 400px;
  }

  .container-image {
    width: 130px;
    height: 165px;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px; /* Reduced */
    row-gap: 10px; /* Reduced */
    column-gap: 8px;
  }

  .feature-item {
    padding: 5px 3px;
    gap: 7px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }
}

/* Extra responsiveness for landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
  .content-wrapper {
    flex-direction: row;
    gap: 20px; /* Reduced */
  }

  .left-content {
    order: 1;
    padding: 10px 15px; /* Reduced */
  }

  .right-images {
    order: 2;
    height: 280px; /* Reduced */
    max-width: 320px; /* Reduced */
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px; /* Reduced */
    row-gap: 8px;
  }

  .feature-item {
    padding: 4px 3px; /* Reduced */
    gap: 6px;
  }

  .feature-icon {
    width: 35px;
    height: 35px;
  }

  .feature-content h4 {
    font-size: 0.8rem;
  }

  .feature-content p {
    font-size: 0.65rem;
  }
}

/* Additional compact styles for very tight spacing */
@media (max-width: 320px) {
  .features-grid {
    gap: 4px;
  }

  .feature-item {
    padding: 3px 2px;
    gap: 5px;
  }

  .feature-icon {
    width: 32px;
    height: 32px;
  }

  .feature-icon i {
    font-size: 0.9rem;
  }

  .feature-content h4 {
    font-size: 0.8rem;
    margin: 0 0 1px 0;
  }

  .feature-content p {
    font-size: 0.65rem;
    line-height: 1.1;
  }
}

/* Business Presence Section - Optimized */
.business-presence-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.business-presence-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.business-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section Header - Reduced */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-tag {
  display: inline-block;
  background: rgba(100, 255, 53, 0.1);
  color: #00b04f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.highlight {
  color: #00b04f;
}

.section-header p {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.5;
}

/* Stats Grid - Reduced */
.stats-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
  min-width: 80px;
}

.stat-item:hover {
  transform: translateY(-3px);
}

.stat-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: #00b04f;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Enhanced View Toggle Buttons */
.view-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(80, 255, 53, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.view-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(73, 255, 53, 0.05),
    rgba(255, 138, 80, 0.05)
  );
  border-radius: 50px;
  z-index: -1;
}

.toggle-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border: none;
  background: transparent;
  color: #64748b;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 140px;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toggle-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #00b04f, #00b04f);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px;
  z-index: -1;
}

.toggle-btn i {
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.toggle-btn span {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.toggle-btn.active {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 255, 53, 0.4);
  animation: buttonGlow 2s ease-in-out infinite;
}

.toggle-btn.active::before {
  opacity: 1;
}

.toggle-btn.active i {
  transform: scale(1.1);
}

.toggle-btn:hover:not(.active) {
  background: rgba(87, 255, 53, 0.1);
  color: #00b04f;
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(80, 255, 53, 0.2);
}

.toggle-btn:hover:not(.active) i {
  transform: scale(1.05);
}

.toggle-btn:active {
  transform: translateY(0) scale(0.98);
}

/* Button Glow Animation */
@keyframes buttonGlow {
  0% {
    box-shadow: 0 8px 25px rgba(97, 255, 53, 0.4);
  }
  50% {
    box-shadow: 0 8px 25px rgba(97, 255, 53, 0.6);
  }
  100% {
    box-shadow: 0 8px 25px rgba(97, 255, 53, 0.4);
  }
}

/* Locations Grid - Reduced */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
  transition: all 0.3s ease;
}

/* Location Cards - Reduced */
.location-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b04f, #00b04f);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.location-card:hover::before {
  transform: scaleX(1);
}

/* Card Header - Reduced */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.location-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.hq-card .location-icon {
  background: linear-gradient(135deg, #00b04f, #00b04f);
  color: #fff;
}

.branch-card .location-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  color: #fff;
}

.partner-card .location-icon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  color: #fff;
}

.location-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hq-badge {
  background: rgba(255, 107, 53, 0.1);
  color: #00b04f;
}

.branch-badge {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.partner-badge {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}

/* Card Content - Reduced */
.location-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.location-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 15px;
}

/* Card Footer - Reduced */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.location-type {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-footer i {
  color: #00b04f;
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.location-card:hover .card-footer i {
  transform: translateX(2px);
}

/* Enhanced Map View Container */
.map-view-container {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  display: none;
}

.map-view-container.show {
  opacity: 1;
  transform: translateY(0);
}

.map-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.map-header {
  background: linear-gradient(135deg, #00b04f, #00b04f);
  color: #fff;
  padding: 30px;
  text-align: center;
}

.map-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.map-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.map-content {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Enhanced Map Image Container */
.map-image-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 900px; /* Increased for better marker visibility */
  min-height: 600px; /* Increased height */
  background: #f8fafc;
  margin: 0 auto;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 600px; /* Increased height */
  display: block;
}

/* Enhanced Map Markers - Better Visibility */
.map-marker {
  position: absolute;
  cursor: pointer;
  z-index: 15;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  opacity: 0.95;
}

.map-marker:hover {
  transform: translate(-50%, -50%) scale(1.3);
  z-index: 25;
  opacity: 1;
}

.marker-icon {
  width: 50px; /* Increased from 45px for better visibility */
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem; /* Increased from 1.3rem */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border: 4px solid #fff; /* Increased from 3px */
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hq-marker .marker-icon {
  background: linear-gradient(135deg, #00b04f, #00b04f);
  box-shadow: 0 8px 25px rgba(67, 255, 53, 0.5);
}

.branch-marker .marker-icon {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.partner-marker .marker-icon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.map-marker:hover .marker-icon {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transform: scale(1.1);
}

/* Enhanced Marker Pulse Animation */
.map-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px; /* Increased to match marker size */
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.4);
  animation: pulse 3s infinite;
  z-index: -1;
}

.branch-marker::before {
  background: rgba(59, 130, 246, 0.4);
}

.partner-marker::before {
  background: rgba(139, 92, 246, 0.4);
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

/* Enhanced Tooltip on Hover */
.map-marker::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  padding: 10px 15px; /* Increased padding */
  border-radius: 8px; /* Increased border radius */
  font-size: 0.85rem; /* Slightly larger font */
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  margin-bottom: 12px; /* Increased margin */
  z-index: 30;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.map-marker:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-8px);
}

/* Modal Styles - Optimized */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 0;
  border-radius: 15px;
  width: 90%;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  background: linear-gradient(135deg, #00b04f, #00b04f);
  color: #fff;
  padding: 20px 25px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.close {
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.close:hover {
  opacity: 0.7;
}

.modal-body {
  padding: 25px;
}

.modal-location-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f1f5f9;
}

.modal-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00b04f, #00b04f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}

.modal-details h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 6px;
}

.modal-type-badge {
  background: rgba(255, 107, 53, 0.1);
  color: #00b04f;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.modal-address,
.modal-contact,
.modal-services {
  margin-bottom: 20px;
}

.modal-address h4,
.modal-contact h4,
.modal-services h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-address h4::before {
  content: "📍";
}

.modal-contact h4::before {
  content: "📞";
}

.modal-services h4::before {
  content: "🚚";
}

.modal-address p {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.85rem;
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.contact-item2 {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #00b04f;
}

.contact-item2 i {
  color: #00b04f;
  width: 14px;
}

.contact-item2 span {
  color: #1e293b;
  font-weight: 500;
  font-size: 0.85rem;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  background: linear-gradient(135deg, #00b04f, #00b04f);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hide any legend-related elements */
.map-legend,
.legend-items,
.legend-item,
.legend-marker,
.marker-label {
  display: none !important;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .business-presence-section {
    padding: 50px 0;
  }

  .stats-grid {
    gap: 25px;
  }

  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
  }

  .location-card {
    padding: 18px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .map-image-container {
    max-width: 800px;
    min-height: 500px;
  }

  .map-image {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .business-presence-section {
    padding: 40px 0;
  }

  .business-container {
    padding: 0 15px;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .view-toggle {
    margin-top: 25px;
    padding: 6px;
  }

  .toggle-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    min-width: 120px;
  }

  .toggle-btn span {
    display: none;
  }

  .toggle-btn i {
    font-size: 1.4rem;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .stat-item {
    padding: 12px 16px;
    min-width: 70px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .locations-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }

  .location-card {
    padding: 16px;
  }

  .location-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .location-badge {
    font-size: 0.55rem;
    padding: 3px 8px;
  }

  .location-card h3 {
    font-size: 1.1rem;
  }

  .location-card p {
    font-size: 0.8rem;
  }

  .location-type {
    font-size: 0.7rem;
  }

  .map-content {
    padding: 25px;
  }

  .map-header {
    padding: 25px;
  }

  .map-header h3 {
    font-size: 1.5rem;
  }

  .map-image-container {
    min-height: 450px;
  }

  .map-image {
    min-height: 450px;
  }

  .marker-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    border: 3px solid #fff;
  }

  .map-marker::before {
    width: 45px;
    height: 45px;
  }

  .map-marker::after {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .modal-body {
    padding: 20px;
  }

  .modal-location-info {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .modal-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .modal-details h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .business-presence-section {
    padding: 30px 0;
  }

  .business-container {
    padding: 0 12px;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .section-tag {
    font-size: 0.65rem;
    padding: 5px 12px;
  }

  .section-header p {
    font-size: 0.85rem;
    max-width: 100%;
  }

  .toggle-btn {
    padding: 10px 20px;
    min-width: 100px;
  }

  .toggle-btn i {
    font-size: 1.2rem;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 10px;
  }

  .stat-item {
    padding: 10px 12px;
    min-width: auto;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .locations-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .location-card {
    padding: 14px;
  }

  .card-header {
    margin-bottom: 12px;
  }

  .location-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .location-badge {
    font-size: 0.5rem;
    padding: 2px 6px;
  }

  .location-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
  }

  .location-card p {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .card-footer {
    padding-top: 10px;
  }

  .location-type {
    font-size: 0.65rem;
  }

  .card-footer i {
    font-size: 0.7rem;
  }

  .map-image-container {
    min-height: 400px;
  }

  .map-image {
    min-height: 400px;
  }

  .marker-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    border: 2px solid #fff;
  }

  .map-marker::before {
    width: 40px;
    height: 40px;
  }

  .map-marker::after {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-header h2 {
    font-size: 1.1rem;
  }

  .close {
    font-size: 1.5rem;
  }

  .modal-body {
    padding: 15px;
  }

  .modal-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .modal-details h3 {
    font-size: 1.2rem;
  }

  .modal-type-badge {
    font-size: 0.6rem;
    padding: 4px 10px;
  }

  .modal-address h4,
  .modal-contact h4,
  .modal-services h4 {
    font-size: 0.9rem;
  }

  .modal-address p {
    font-size: 0.8rem;
  }

  .contact-item {
    padding: 8px 10px;
    gap: 8px;
  }

  .contact-item span {
    font-size: 0.8rem;
  }

  .service-tag {
    font-size: 0.65rem;
    padding: 5px 10px;
  }
}

/* Extra small devices */
@media (max-width: 320px) {
  .section-header h2 {
    font-size: 1.2rem;
  }

  .location-card {
    padding: 12px;
  }

  .location-icon {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .location-card h3 {
    font-size: 0.95rem;
  }

  .location-card p {
    font-size: 0.7rem;
  }

  .location-type {
    font-size: 0.6rem;
  }

  .modal-content {
    margin: 15% auto;
  }

  .modal-body {
    padding: 12px;
  }

  .map-image-container {
    min-height: 350px;
  }

  .map-image {
    min-height: 350px;
  }

  .marker-icon {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .map-marker::before {
    width: 35px;
    height: 35px;
  }
}

/* truck cta css section  */

/* Simple CTA Transportation Section */
.simple-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c5f41 0%, #1e3a2e 100%);
  position: relative;
  overflow: hidden;
}

.simple-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content {
  display: grid;
  grid-template-columns: 0.7fr 1.5fr; /* Made right side even larger for more truck space */
  gap: 100px; /* Increased gap */
  align-items: center;
  min-height: 400px;
}

/* Left Text Content */
.cta-text-content {
  color: #fff;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out;
}

.cta-text-content.animate {
  opacity: 1;
  transform: translateX(0);
}

.cta-tag {
  display: inline-block;
  background: rgba(137, 255, 53, 0.2);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 25px;
  text-transform: uppercase;
  border: 1px solid rgba(104, 53, 255, 0.3);
}

.cta-text-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
  color: #fff;
}

.highlight {
  color: #00b04f;
}

.cta-buttons {
  margin-top: 40px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #00b04f, #00b04f);
  color: #fff;
  box-shadow: 0 8px 25px rgba(93, 255, 53, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(93, 255, 53, 0.4);
}

/* Right Truck Container - Moved further right */
.truck-container {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 60px; /* Increased padding */
  padding-left: 100px; /* Increased left padding to push truck right */
  opacity: 0;
  transform: translateX(100px);
  transition: all 1s ease-out;
}

.truck-container.animate {
  opacity: 1;
  transform: translateX(0);
}

.truck-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 500px;
  transform: translateX(
    60px
  ); /* Increased transform to move truck more right */
}

.truck-image {
  width: 180%;
  height: 120%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

/* Truck floating animation - only after section is visible */
.truck-container.animate .truck-image {
  animation: truckFloat 3s ease-in-out infinite 1.2s;
}

@keyframes truckFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Motion Lines Behind Truck */
.motion-lines {
  position: absolute;
  left: -120px; /* Moved further left to accommodate bigger truck */
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  height: 80px;
  z-index: 1;
  opacity: 0;
}

/* Motion lines animation - only when truck is visible */
.truck-container.animate .motion-lines {
  animation: motionLinesAppear 0.5s ease-out 1.5s forwards;
}

@keyframes motionLinesAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.motion-line {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00b04f, transparent);
  border-radius: 1px;
}

.motion-line.line-1 {
  top: 35%;
  width: 80px;
}

.motion-line.line-2 {
  top: 50%;
  width: 65px;
}

.motion-line.line-3 {
  top: 65%;
  width: 50px;
}

/* Motion lines animations - only when container is animated - CLEANED UP */
.truck-container.animate .motion-line.line-1 {
  animation: motionLine1 1.5s ease-in-out infinite 1.5s;
}

.truck-container.animate .motion-line.line-2 {
  animation: motionLine2 1.5s ease-in-out infinite 1.8s;
}

.truck-container.animate .motion-line.line-3 {
  animation: motionLine3 1.5s ease-in-out infinite 2.1s;
}

/* FIXED KEYFRAMES - Removed missing opacity declarations */
@keyframes motionLine1 {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0) scaleX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(-25px) scaleX(1);
  }
}

@keyframes motionLine2 {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0) scaleX(0);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-20px) scaleX(1);
  }
}

@keyframes motionLine3 {
  0%,
  100% {
    opacity: 0;
    transform: translateX(0) scaleX(0);
  }
  50% {
    opacity: 0.6;
    transform: translateX(-15px) scaleX(1);
  }
}

/* Enhanced Responsive Design */

/* Large Desktop */
@media (min-width: 1400px) {
  .simple-container {
    max-width: 1400px;
  }

  .cta-content {
    gap: 120px;
  }

  .truck-wrapper {
    max-width: 600px;
    transform: translateX(80px);
  }
}

/* Desktop */
@media (max-width: 1200px) {
  .cta-content {
    gap: 80px;
  }

  .truck-container {
    padding-right: 40px;
    padding-left: 80px;
  }

  .truck-wrapper {
    transform: translateX(40px);
  }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
  .simple-cta-section {
    padding: 70px 0;
  }

  .cta-content {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
  }

  .cta-text-content h2 {
    font-size: 2.5rem;
  }

  .truck-container {
    height: 320px;
    padding-right: 30px;
    padding-left: 60px;
  }

  .truck-wrapper {
    max-width: 450px;
    transform: translateX(30px);
  }

  .truck-image {
    width: 160%;
    height: 110%;
  }

  .motion-lines {
    left: -100px;
    width: 130px;
    height: 70px;
  }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  .simple-cta-section {
    padding: 60px 0;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .cta-text-content h2 {
    font-size: 2.2rem;
  }

  .truck-container {
    height: 300px;
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
  }

  .truck-wrapper {
    transform: translateX(0);
    max-width: 380px;
  }

  .truck-image {
    width: 150%;
    height: 100%;
  }

  .motion-lines {
    left: -80px;
    width: 120px;
    height: 60px;
  }

  .motion-line.line-1 {
    width: 60px;
  }

  .motion-line.line-2 {
    width: 50px;
  }

  .motion-line.line-3 {
    width: 40px;
  }
}

/* Mobile Large */
@media (max-width: 480px) {
  .simple-container {
    padding: 0 15px;
  }

  .simple-cta-section {
    padding: 50px 0;
  }

  .cta-content {
    gap: 40px;
  }

  .cta-text-content h2 {
    font-size: 1.9rem;
  }

  .cta-tag {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .cta-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .truck-container {
    height: 260px;
  }

  .truck-wrapper {
    max-width: 320px;
  }

  .truck-image {
    width: 130%;
    height: 100%;
  }

  .motion-lines {
    left: -60px;
    width: 100px;
    height: 50px;
  }

  .motion-line {
    height: 2px;
  }

  .motion-line.line-1 {
    width: 50px;
  }

  .motion-line.line-2 {
    width: 40px;
  }

  .motion-line.line-3 {
    width: 30px;
  }
}

/* Mobile Small */
@media (max-width: 360px) {
  .cta-text-content h2 {
    font-size: 1.7rem;
  }

  .truck-container {
    height: 240px;
  }

  .truck-wrapper {
    max-width: 280px;
  }

  .truck-image {
    width: 120%;
  }

  .motion-lines {
    left: -50px;
    width: 80px;
    height: 45px;
  }

  .motion-line.line-1 {
    width: 40px;
  }

  .motion-line.line-2 {
    width: 30px;
  }

  .motion-line.line-3 {
    width: 25px;
  }
}

/* Dynamic Image Change Section */
.dynamic-image-section {
  padding: 60px 0;
  background: #fff;
  position: relative;
}

.dynamic-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dynamic-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Equal columns */
  gap: 60px;
  align-items: start;
}

/* Left Image Container */
.left-image-container {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.image-wrapper {
  position: relative;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-display-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.4s ease;
  display: block;
}

.main-display-image.changing {
  opacity: 0.7;
  transform: scale(0.98);
}

/* Right Content */
.right-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-left: 20px;
}

/* Text Content */
.section-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #00b04f;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.text-content h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.3;
}

.highlight {
  color: #00b04f;
}

.text-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  border: 2px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  border-color: #00b04f;
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(255, 107, 53, 0.1);
}

.service-card.active {
  border-color: #00b04f;
  background: #fff5f2;
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.card-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #00b04f, #00b04f);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card.active .card-icon {
  transform: scale(1.05);
}

.card-content {
  flex: 1;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.service-card.active .card-content h4 {
  color: #00b04f;
}

.card-content p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Loading state for images */
.main-display-image[src=""] {
  background: linear-gradient(45deg, #f8fafc, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.main-display-image[src=""]:before {
  content: "📱";
  font-size: 4rem;
  opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dynamic-content {
    gap: 40px;
  }

  .text-content h2 {
    font-size: 2rem;
  }

  .main-display-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .dynamic-image-section {
    padding: 40px 0;
  }

  .dynamic-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .right-content {
    padding-left: 0;
  }

  .text-content h2 {
    font-size: 1.8rem;
  }

  .main-display-image {
    height: 300px;
  }

  .left-image-container {
    position: static;
  }
}

@media (max-width: 480px) {
  .dynamic-container {
    padding: 0 15px;
  }

  .text-content h2 {
    font-size: 1.6rem;
  }

  .service-card {
    padding: 15px;
    gap: 12px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .main-display-image {
    height: 250px;
  }
}

/* members style css  */

/* Expert Team Section */
.expert-team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fcff 0%, #e3f2fd 100%);
  position: relative;
  overflow: hidden;
}

.expert-team-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 107, 53, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.expert-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: #00b04f;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  text-transform: uppercase;
  border: 1px solid rgba(130, 255, 53, 0.2);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.highlight {
  color: #00b04f;
  position: relative;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Team Grid - Desktop & Tablet */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* Team Card */
.team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(255, 107, 53, 0.1);
  animation: fadeInUp 0.6s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.team-card:nth-child(1) {
  animation-delay: 0.1s;
}
.team-card:nth-child(2) {
  animation-delay: 0.2s;
}
.team-card:nth-child(3) {
  animation-delay: 0.3s;
}
.team-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Team Image Wrapper */
.team-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.team-card:hover .team-image {
  transform: scale(1.05);
}

/* Team Overlay with Eye Button */
.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.9),
    rgba(255, 138, 80, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.view-profile-btn {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.view-profile-btn:hover {
  background: #fff;
  color: #00b04f;
  transform: scale(1.1);
}

/* Team Info */
.team-info {
  padding: 25px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.team-card:hover .team-info h3 {
  color: #00b04f;
}

.team-position {
  font-size: 1rem;
  font-weight: 600;
  color: #00b04f;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-description {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Modal Styles */
.team-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-content {
  background-color: #fff;
  margin: 2% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  position: relative;
  padding: 20px;
  border-bottom: 1px solid #f1f5f9;
}

.modal-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #64748b;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #00b04f;
}

.modal-body {
  padding: 30px;
}

.member-profile {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: start;
}

.profile-image {
  text-align: center;
}

.modal-member-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00b04f;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.profile-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.modal-position {
  font-size: 1.1rem;
  font-weight: 600;
  color: #00b04f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
}

.detail-section {
  margin-bottom: 25px;
}

.detail-section h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  border-bottom: 2px solid #00b04f;
  padding-bottom: 5px;
  display: inline-block;
}

.detail-section p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: linear-gradient(135deg, #00b04f, #00b04f);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #64748b;
}

.contact-info i {
  color: #00b04f;
  width: 16px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .expert-team-section {
    padding: 60px 0;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .team-image-wrapper {
    height: 250px;
  }

  .member-profile {
    grid-template-columns: 150px 1fr;
    gap: 30px;
  }

  .modal-member-image {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .expert-team-section {
    padding: 50px 0;
  }

  .expert-container {
    padding: 0 15px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Horizontal Scroll for Mobile */
  .team-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #00b04f #f1f5f9;
  }

  .team-grid::-webkit-scrollbar {
    height: 6px;
  }

  .team-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
  }

  .team-grid::-webkit-scrollbar-thumb {
    background: #00b04f;
    border-radius: 3px;
  }

  .team-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .team-image-wrapper {
    height: 220px;
  }

  .team-info {
    padding: 20px;
  }

  .team-info h3 {
    font-size: 1.2rem;
  }

  .view-profile-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .member-profile {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .modal-content {
    width: 95%;
    margin: 5% auto;
  }

  .modal-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .team-card {
    min-width: 250px;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .team-image-wrapper {
    height: 200px;
  }

  .team-info {
    padding: 18px;
  }

  .view-profile-btn {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .modal-member-image {
    width: 120px;
    height: 120px;
  }

  .profile-info h2 {
    font-size: 1.5rem;
  }
}

/*Footer*/
.footer {
  background: linear-gradient(50deg, #00b9b3 0%, #00b9b3 100%);
  color: #ffffff;
  padding: 60px 0 40px 0;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.logo-text {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.logo-subtitle {
  font-size: 1.1rem;
  color: #ffffff;
}

.footer-contact-info {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-contact-item {
  max-width: 300px;
}

.footer-contact-details h4 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.footer-contact-details p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
}
.footer-contact-details a{
  text-decoration: none;
  color: white;
  cursor: pointer;
}
  .footer-contact-details a:hover{
  color: #1a00b0;
}
/* Footer Content Sections */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: bold;
}

.footer-section p {
  color: #ffffff;
  line-height: 1.6;
  font-size: 14px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #1a00b0;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid #ffffff;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  color: #ffffff;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #444;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: #00b04f;
}

/* Responsive Layouts */
@media (max-width: 992px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .social-links {
    justify-content: flex-start;
  }
}

