/* ========================================
   云速国际物流 - 主页样式 (复刻版)
   ======================================== */

/* CSS Variables - 精确颜色值 */
:root {
  --primary-blue: #1A365D;
  --secondary-blue: #2c4a7c;
  --accent-orange: #E67E22;
  --text-dark: #333333;
  --text-light: #666666;
  --text-gray: #888888;
  --white: #ffffff;
  --bg-light: #F5F5F5;
  --bg-gray: #EEEEEE;
  --transition: all 0.3s ease;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'PingFang SC', 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Header Navigation
   ======================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.header-nav .navbar {
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  text-decoration: none;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-blue);
}

.navbar{
      transition: right 0.3s ease;
      right:0;
}

/* Navigation Menu */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  padding: 22px 18px !important;
  font-size: 14px;
  color: var(--primary-blue);
  position: relative;
  overflow: hidden;
}

/* Flip Text Effect */
.nav-text-wrap {
  display: block;
  position: relative;
  height: 20px;
  overflow: hidden;
}

.nav-normal,
.nav-hover {
  display: block;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Default state - show normal text */
.nav-normal {
  color: var(--primary-blue);
  transform: translateY(0);
}

.nav-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: rgb(26, 50, 99);
  font-weight: 600;
  transform: translateY(100%);
}

/* Hover state - flip up */
.nav-item:hover .nav-normal {
  transform: translateY(-100%);
}

.nav-item:hover .nav-hover {
  transform: translateY(0);
}

/* Nav link base - for positioning */
.nav-link {
  position: relative;
  z-index: 1002;
}

/* Active state */
.nav-link.active {
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: var(--primary-blue);
  z-index: 1001;
  bottom: 0;
  margin-bottom: 10px;
  width: 0%;
  left: 50%;
}
.nav-link.active::after {
  content: '';
  position: absolute;
  transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: var(--primary-blue);
  z-index: 1001;
  bottom: 0;
  margin-bottom: 10px;
  width: 20%;
  left: 40%;
}

/* Hover underline effect - includes dropdown */
.nav-item:hover .nav-link::after,
.dropdown:hover .nav-link::after {
  content: '';
  position: absolute;
  transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -webkit-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  border-bottom-width: 3px;
  border-bottom-style: solid;
  border-bottom-color: var(--primary-blue);
  z-index: 1001;
  bottom: 0;
  margin-bottom: 10px;
  width: 20%;
  left: 40%;
  display: inline-block;
  margin-left: 0;
  vertical-align: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}

/* Ensure dropdown z-index is lower than underline */
.dropdown-menu {
  z-index: 1000;
}

.nav-link.active .nav-normal {
  color: rgb(26, 50, 99);
  font-weight: 600;
}

/* Remove dropdown caret arrow */
.dropdown-toggle::after {
  display: none;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--white);
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  padding: 12px 20px;
  position: relative;
  color: var(--text-dark);
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dropdown indicator - sliding blue bar from left */
.dropdown-item .dropdown-indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--primary-blue);
  transition: width 0.3s ease;
}

.dropdown-item:hover .dropdown-indicator {
  width: 3px;
}

.dropdown-item:hover {
  background: var(--bg-light);
  padding-left: 28px;
  color: var(--primary-blue);
}

/* Right Side Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.action-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 16px;
  transition: var(--transition);
}

.action-icon:hover {
  color: rgb(26, 50, 99);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  margin-left: 10px;
  padding-left: 15px;
  border-left: 1px solid #ddd;
}

.lang-btn {
  color: var(--text-gray);
  transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  color: rgb(26, 50, 99);
}

.lang-divider {
  color: #ddd;
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
  padding: 8px;
  background: none;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary-blue);
  transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* ========================================
   Hero Banner Section
   ======================================== */
.hero-banner {
  position: relative;
  padding-top: 56px;
}

.banner-slide {
  width: 100%;
  aspect-ratio: 100 / 45;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.banner-content-box{
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100% !important;
    z-index: 2;
    max-width: 1200px;
    transform: translateX(-50%);
}



.banner-content {
    position: absolute;
  top: 8.8%;
  width: 100%;
  color: var(--white);
  text-align: center;
  padding: 60px 0;
  margin: 0 auto;
}

.banner-content-2,
.banner-content-3 {
    top: 12%;
}
.banner-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.banner-subtitle {
  font-size: 20px;
  margin-bottom: 8px;
  font-weight: 400;
  margin-bottom: 80px;;
}

.banner-desc {
  font-size: 13px;
  letter-spacing: 4px;
  opacity: 0.8;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.banner-tags {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.tag-item {
  padding: 8px 18px;
  font-size: 18px;
  align-items: center;
  gap: 6px;
}
  .tag-item .sp1{
      text-transform: uppercase;
  }
  
.tag-item .sp2{
    font-size: 14px;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 100px;
    z-index: 99!important;
}



.carousel-indicators button {
    font-size: 0;
    width: 60px!important;
    height: 2px!important;
    margin-right: 0!important;
    margin-left: 0!important;
    border-top:0!important;
    border-bottom: 0!important;
    opacity: 1!important;
    margin-left: unset;
    margin-right: unset;
    background-color: rgba(255, 255, 255, 0.36)!important;
}

.carousel-indicators button.active {
  background: #fff!important;
}

/* Slide Counter */
.slide-counter {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.current-slide {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.divider-line {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.5);
}

.total-slides {
  font-size: 16px;
  opacity: 0.7;
}

/* Banner Controls - Inside indicators */
.banner-controls {
  position: absolute;
  bottom: 97px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 200px;
  z-index: 10;
}

.banner-control {
  padding: 8px 20px;
  background: transparent;
  border: 0!important;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 1px;
}

.banner-control:hover {
color: rgb(241, 104, 33);    
}

.banner-control.prev {
  margin-right: 10px;
}

.banner-control.next {
  margin-left: 10px;
}

.logistics-search{
    margin-top: 120px;
}
.logistics-search .search-wrapper{
    max-width: 100%;
}


.logistics-content{
    padding-top: 50px;
}
.logistics-cont{
    margin-top: 10px;
    border-top: 1px solid #999;
    padding-top: 10px;
}
.logistics-content h2{
    border-left: 5px solid #F10215;
    font-size: 18px;
    color: #333;
    padding-left: 10px;
    margin-bottom: 10px;
}



.about-banner{
    width: 100%;
}

.about-banner img{
    width: 100%;
    
    transition: all 0.5s ease
}


.about-banner img:hover{
    transform: scale(1.05)
}
.about-position{padding:10px}



        .about-section { padding: 60px 0; background: #fff; }
        .about-content { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        .section-title { font-size: 28px; font-weight: bold; color: #1A365D; text-align: center; margin-bottom: 40px; }

        .about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 60px; }
        .about-intro img { width: 100%; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.5s ease}
        .about-intro img:hover{transform: scale(1.05)}
        .about-intro h2 { font-size: 24px; color: #1A365D;  }
        .about-intro .about-our{color:rgba(26, 50, 99, 0.42);font-size: 14px;margin-bottom: 20px;}
        .about-intro .about-our2{    font-size: 18px;
    color: rgb(241, 104, 33);
    line-height: 150%;}
    .about-our2-hr{width:200px;height:2px;line-height:2px;background:#999;margin:30px 0}
        .about-intro p { color: #666; margin-bottom: 15px; }
        .about-intro-box{margin-bottom:30px;border-top:1px solid #888;display:flex;}
        .about-intro-1{
            padding: 10px;
        }  
        .about-intro-2{
            padding: 10px;
            padding-left: 20px;
            
        }
        .about-intro-box .sp1{
            color: rgb(241, 104, 33);
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .about-intro-box .sp2{
            font-size: 20px;
            color: rgb(26, 50, 99);
            line-height: 150%;
        }
        .about-intro-box .sp3{
            color: rgb(107, 118, 142);
            font-size: 14px;
            line-height: 184.6%;
        }
    
/* Order Search Bar */
.order-search-bar {
  background: var(--white);
  padding: 25px 0;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.search-wrapper {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.search-input-group {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid #000;
  border-radius: 0;
}

.search-input-group i {
  position: absolute;
  left: 15px;
  color: var(--text-gray);
  font-size: 16px;
}

.search-input {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: none;
  font-size: 13px;
  text-indent: 36px;
  outline: none;
  background: transparent;
}

.search-btn {
    height: 42px;
    line-height: 42px;
  padding: 0 25px;
  background: var(--text-dark);
  color: var(--white);
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: rgb(26, 50, 99);
}

/* ========================================
   Section Common Styles
   ======================================== */
section {
  padding: 70px 0;
}



.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
    font-size: 40px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.section-title .orange {
  color: rgb(241, 104, 33)
}

.section-subtitle {
    font-size: 18px;
    color: rgb(107, 118, 142);
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
  background: url('../images/2022012816582087cf6a.jpg');
}

.transport-icons {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

.transport-item {
  text-align: center;
}
.transport-item-1 {
    padding-top: 200px;
}
.transport-item-3 {
    padding-top: 150px;
}
  .transport-icon {
    width: 300px;
  }
   .transport-item-2 .transport-icon {
    width: 600px; 
    }
  .transport-icon img{
    width: 100%;
  }
  .transport-item-3 .transport-icon {
      margin-bottom: 50px;
  }
  



.transport-item span {
    display: inline-block;
    height: 70px;
    line-height: 70px;
    padding-left: 20px;
    color: rgb(26, 50, 99);
    font-size: 24px;
}



.transport-icons .transport-btns{
    display: flex;
    padding: 10px;
}

   .transport-item-2 .transport-btns{
        background: rgb(26, 50, 99);
        width: 80%;
        padding-left: 50px;
        margin: auto;
}


   .transport-item-2  span {
        color: #fff;   
   }


.transport-btns-box{
    display: none;
}



@media (max-width: 991px) {
  .transport-icon {
    width: 220px;
  }
   .transport-item-2 .transport-icon {
        width: 400px; 
    }
    
    .logistics-search{
        margin-top: 100px;
    }

}
/* Mobile */
@media (max-width: 767px) {
    
        .logistics-search{
    margin-top: 80px;
    }

    
    .transport-item-1,.transport-item-3{
        display: none;
    }

    .transport-item-2 .transport-icon{
        width: 100%;
    }
    
    .transport-icons .transport-btns{
        display: none;
    }

    .transport-btns-box{
        display: flex;
    }

    .transport-btns{
        width: 33.33%;
        text-align: center;
        padding: 20px 0;
    }

    .transport-btns span{
        display: inline-block;
        padding-top: 10px;
        color: rgb(26, 50, 99);
        font-size: 1.125rem;
        line-height: 150%;
    }
    .ransport-btns-on{
        background: rgb(26, 50, 99);
    }
    .ransport-btns-on span{
        color: #fff;
    }

}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  width: 260px;
  padding: 35px 25px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card .card-icon {
  width: 65px;
  height: 65px;
  margin-bottom: 18px;
  font-size: 28px;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.service-card p {
  font-size: 12px;
  color: var(--text-gray);
  margin: 0;
}

/* Active Card - Russia (Rectangle style) */
.service-card.active {
  background: var(--primary-blue);
}

.service-card.active .card-icon {
  color: var(--white);
}

.service-card.active h3,
.service-card.active p {
  color: var(--white);
}

/* ========================================
   Why Choose Us Section
   ======================================== */
.why-choose-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 0 auto;
}

.stat-card {
  padding: 60px 20px;
  background: var(--white);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card img.on{
    display: none;
}


/* First card - blue background */
.stat-card:first-child {
  background: var(--primary-blue);
}
.stat-card:first-child img{
    display: none;
}
.stat-card:first-child img.on{
    display: inline-block;
}
.stat-card:first-child .stat-icon {
  color: rgb(250, 185, 91);
}

.stat-card:first-child .stat-number {
  color: rgb(250, 185, 91);
}

.stat-card:first-child .stat-label {
  color: rgba(255, 255, 255, 0.8);
}


.stat-card:hover {
  background: var(--primary-blue);
}
.stat-card:hover img{
    display: none;
}
.stat-card:hover img.on{
    display: inline-block;
}
.stat-card:hover .stat-icon {
  color: rgb(250, 185, 91);
}

.stat-card:hover .stat-number {
  color: rgb(250, 185, 91);
}

.stat-card:hover .stat-label {
  color: rgba(255, 255, 255, 0.8);
}










.stat-icon {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 18px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: rgb(26, 50, 99);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-gray);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
  background: var(--bg-light);
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  position: relative;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
    transition: transform 0.5s ease
}
.about-image img:hover {
    transform: scale(1.05);
}
.about-content {
  padding: 0 15%;
}
.about-content .section-title{
    padding-bottom: 30px;
    border-bottom: 3px solid #ddd;
    margin-bottom: 30px;
}
.about-slogan {
    font-size: 24px;
  color: rgb(26, 50, 99);
  
  font-weight: 600;
  margin-bottom: 30px;
}

.about-text {
  color: rgb(107, 118, 142);
  line-height: 1.9;
  margin-bottom: 25px;
  font-size: 14px;
  max-width: 530px;
}

.about-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-size: 14px;
}

.feature-item i {
  color: rgb(26, 50, 99);
  font-size: 16px;
}

.btn-more {
  display: inline-block;
  align-items: center;
  gap: 8px;
  width: 170px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border: 1px solid var(--text-gray);
  color: var(--text-gray);
  font-size: 13px;
  transition: var(--transition);
  position: relative;
  background: transparent;
}
.btn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgb(26, 50, 99);     /* 填充颜色 */
  transition: width 0.5s ease-out;  /* 动画过渡 */
  z-index: -1;
}
.btn-more:hover::before {
  width: 100%;
}
.btn-more:hover {
  color: #fff;
  
  
  
  
}

/* ========================================
   Customer Service Section
   ======================================== */
.customer-service-section {
  background: url('../images/20220129101128e54b1c.jpg');
  
  background-size: 100% 300px;     /* 宽度100%，高度300px */
  background-position: top center;  /* 靠上对齐 */
  background-repeat: no-repeat;
  
  
  position: relative;
}

.customer-service-section .section-header.light .section-title,
.customer-service-section .section-header.light .section-subtitle {
  color: var(--white);
}

.customer-service-section .section-header.light .section-subtitle {
  opacity: 0.8;
}

.service-hexagons {
    margin: 0 auto;
    background: #fff;
    padding: 48px 20px;
}

.hexagon-card {
  padding: 35px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  text-align: center;
  color: rgb(107, 118, 142);
  transition: var(--transition);
  position: relative;
}

.hexagon-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 12px solid rgba(255, 255, 255, 0.3);
}

.hexagon-card:last-child::after {

}

.hexagon-card:hover {

}

.hexagon-card.highlight {

}

.hexagon-icon {
  background: url('../images/202201291017189c9fb5.png') center no-repeat;
  width: 100%;
  height: 110px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.hexagon-card.on .hexagon-icon {
  background: url('../images/20220129101718f543a1.png') center no-repeat;
}




.hex-number {
display: inline-block;
    position: absolute;
    top: 15px;
    color: #fff;
    font-size: 36px;
    left: 50%;
    margin-left: -24px;
}

.hex-icon {
  font-size: 32px;
  margin-bottom: 5px;
}

.hexagon-card h3 {
    display: inline-block;
    position: absolute;
    top: 70px;
    font-size: 16px;
    color: rgb(255, 255, 255);
    left: 50%;
    margin-left: -33px;
}

.hexagon-card p {
    color: rgb(107, 118, 142);
    font-size: 14px;
  margin: 0 auto;
  line-height: 1.5;
  width: 80%;

}

/* ========================================
   News Section
   ======================================== */
.news-section {
  background: var(--bg-light);
}

.news-wrapper {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.news-left {
  flex: 0 0 45%;
}

.news-right {
  flex: 1;
  position: relative;
}

.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.news-left .news-card {
    background: rgb(26, 50, 99);
}

.news-left .news-content{
    padding: 35px 50px;
}

.news-left .news-card h3{
    color: #fff;
    font-size: 20px;
    height: 4rem;
    overflow: hidden;
    line-height: 2rem;
}

.news-card .hr{
    height: 2px;
    line-height: 2px;
    background: #fff;
    width: 50px;
    transition: all 0.5s ease;
}
.news-card:hover .hr{
    width: 100%;
}
.news-card.fixed-news .news-image {
  height: 220px;
}

.news-card.small {
  flex: 1;
}

.news-card.small .news-image {
  height: 160px;
}

.news-image {
  position: relative;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-date {
  color: rgb(157, 166, 186);
  padding: 8px 12px;
  border-radius: 5px;
  line-height: 1.2;
}

.news-date .day {
  display: block;
  font-size: 48px;
  font-weight: 700;
  padding-left: 15px;
}

.news-date .month {
  display: block;    
  font-size: 14px;
  padding-left: 15px;
}

.news-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.5;
}


.news-info h3 {
    color: rgb(26, 50, 99);
    padding-left: 15px;
    font-size: 18px;
    line-height: 1.5rem;
    height: 3rem;
    overflow: hidden;
}



.news-info .hr{
    height: 2px;
    line-height: 2px;
    background: #666;
    width: 50px;
    transition: all 0.5s ease;
    margin: 10px 15px 30px 15px;
}
.news-info:hover .hr{
    width: 80%;
}






.news-card p {
    margin-top: 20px;
      color: rgb(163, 172, 191);
  font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.7rem;
    height: 5.2rem;
    overflow: hidden;
}


.news-card .news-info{
    
}


.carousel-inner{
}
















.news-link {
  color: rgb(26, 50, 99);
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s ease;
}

.news-row {
  display: flex;
  gap: 20px;
  height: 100%;
}

.news-row .news-card {
  margin-bottom: 0;
}

/* News Controls */
.news-control {
  position: absolute;
  top: -55px;
  width: 48px;
  height: 48px;
  background: rgb(241, 104, 33);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 0;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.news-control.prev {
  right: 75px;
}

.news-control.next {
  right: 10px;
}

.news-control:hover {
  background: rgb(26, 50, 99);
  color: var(--white);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--primary-blue);
  color: var(--white);
}
.footer-share{
    display: flex;
    gap: 10px;
}
.footer-share a{
    position: relative;
} 
.footer-share img{
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 300px;
    max-width: 300px;
    z-index: 9;
    display: none;
}
.footer-share a.on img{
    display: block;
    
}
.footer-main {
  padding: 50px 0 35px;
}

.footer-brand .brand-name {
  font-size: 42px;
  font-weight: 700;
  color: rgb(227, 108, 9);
  margin-bottom: 8px;
}

.footer-brand .brand-slogan {
  font-size: 16px;
  color: #fff;
}

.footer-links h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.63)
}

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

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

.footer-links a {
  color: fff;
  font-size: 12px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: fff;
}
.wx{
    display: none;
}
.wx.on{
    display: block;
    
}
.wx .bg{
    position: fixed;
    z-index: 999990;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
}
.wx img{
    position: fixed;
    bottom: 30%;
    left: 50%;
    width: 300px;
    margin-left: -150px;
    z-index: 999999;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12px;
}

.contact-info i {
  color: rgb(26, 50, 99);
  font-size: 14px;
  margin-top: 2px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--white);
  transition: var(--transition);
}

.social-icon:hover {
  background: rgb(26, 50, 99);
  border-color: rgb(26, 50, 99);
  color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.15);
  padding: 18px 0;
}

.footer-bottom-content {
  text-align: center;
}

.copyright {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: rgb(26, 50, 99);
}

/* ========================================
   Scroll Animations
   ======================================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(185px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-item {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.scroll-item.from-left {
  transform: translateX(-180px);
}
.scroll-item.from-right {
  transform: translateX(180px);
}
.scroll-item.from-bottom {
  transform: translateY(180px);
}
.scroll-item.from-top {
  transform: translateY(-180px);
}





.scroll-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered Animation Delays */
.stats-grid .scroll-item:nth-child(1) { transition-delay: 0.1s; }
.stats-grid .scroll-item:nth-child(2) { transition-delay: 0.2s; }
.stats-grid .scroll-item:nth-child(3) { transition-delay: 0.3s; }
.stats-grid .scroll-item:nth-child(4) { transition-delay: 0.4s; }

.service-hexagons .scroll-item:nth-child(1) { transition-delay: 0.1s; }
.service-hexagons .scroll-item:nth-child(2) { transition-delay: 0.2s; }
.service-hexagons .scroll-item:nth-child(3) { transition-delay: 0.3s; }
.service-hexagons .scroll-item:nth-child(4) { transition-delay: 0.4s; }

/* Banner Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(480px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }


/* ========================================
   Responsive Styles
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    
  .logo-text{
    color: var(--white);
  }
  .header-nav{
    background: var(--primary-blue);
  }
  .header-nav .navbar {
    max-width: 100%;
    background: var(--primary-blue);
  }
  
  .navbar-open{
      position: relative;
      right:275px;
  }
  
  
  
  
  .header-nav .navbar-collapse {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--primary-blue);
    padding: 0px 20px 20px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  }
  
  .header-nav .navbar-collapse.show {
    right: 0;
  }
  
  .mobile-menu-overlay.active {
    display: block;
  }
  .hamburger-icon span{
      background: var(--white);
  }
  .navbar-toggler{
    color: var(--white);
  }
  
  .navbar-toggler:focus{
      
    box-shadow:unset;
  }
  
  
  
  .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-left: 15%;
  }
  
  .nav-link {
    color: var(--white) !important;
    padding: 15px 0 !important;
  }
  
  /* Disable flip effect on mobile */
  .nav-text-wrap {
    height: auto;
    overflow: visible;
  }
  .nav-normal {
    color: var(--white) !important;
    transform: none !important;
  }
  
  .nav-hover {
    display: none;
  }
  
  .nav-link:hover .nav-normal {
    color: rgb(26, 50, 99);
  }
  
  .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    padding-left: 15px;
  }
  
  .dropdown-item {
    color: var(--white);
    overflow: visible;
  }
  
  .dropdown-item .dropdown-indicator {
    display: none;
  }
  
  .dropdown-item:hover {
    background: rgba(0, 0, 0, 0.2);
    padding-left: 20px;
    color: rgb(26, 50, 99);
  }
  
  .nav-actions {
    display: none;
  }
  
  .banner-slide {
    height: 780px;
    min-height: 450px;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .banner-subtitle {
    font-size: 18px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  

  
  .hexagon-card::after {
    display: none;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 35px;
  }
  
  .news-control.prev {
    right: 55px;
  }
  
  .news-control.next {
    right: 10px;
  }
}

/* Mobile */
@media (max-width: 767px) {
    .service-hexagons{
        padding: 20px 10px;
    }
    .about-intro{
        grid-template-columns: 1fr;
    }
    
  section {
    padding: 50px 0;
  }
  
  .section-header {
    margin-bottom: 35px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .section-subtitle {
    font-size: 13px;
  }
  
  .banner-title {
    font-size: 26px;
  }
  
  .banner-subtitle {
    font-size: 16px;
  }
  
  .banner-desc {
    font-size: 11px;
    letter-spacing: 2px;
  }
  
  .banner-tags {
    gap: 10px;
  }
  
  .tag-item {
    padding: 6px 12px;
    font-size: 11px;
  }

  .banner-slide {
    height: 600px;
    min-height: 400px;
  }
  

  
  .order-search-bar {
    padding: 20px 0;
    margin-top: -25px;
  }
  

  .service-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .service-card {
    width: 100%;
    max-width: 320px;
    padding: 25px 20px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-icon {
    font-size: 28px;
  }
  

  
  .hexagon-card {
    padding: 25px 20px;
  }
  
  .footer-main {
    padding: 40px 0 25px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .copyright {
    font-size: 10px;
  }
  
  .slide-counter {
    top: auto;
    bottom: 70px;
    right: 15px;
    transform: none;
  }
  
  .banner-controls {
    bottom: 20px;
  }
  
  .banner-control {
    padding: 6px 15px;
    font-size: 11px;
  }
  
  .news-control.prev,
  .news-control.next {
    top: -40px;
  }
  
  .news-control.prev {
    right: 50px;
  }
  
  .news-control.next {
    right: 5px;
  }
  
  .news-wrapper {
    flex-direction: column;
  }
  
  .news-left {
    flex: none;
  }
  
  .news-card.fixed-news .news-image {
    height: 180px;
  }
  
  .news-card.small .news-image {
    height: 140px;
  }
  
  .news-row {
    flex-direction: column;
    gap: 15px;
  }
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background: #fff;
  z-index: 2000;
  display: none;
  padding: 0 2%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-overlay.active {
  display: flex;
  align-items: center;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-box {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.search-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.search-icon i {
  font-size: 20px;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 0;
}

.search-input {
  flex: 1;
  height: 40px;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 0 10px;
  background: transparent;
  min-width: 0;
}

.search-input::placeholder {
  color: #999;
}

.search-close {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 20px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.search-close:hover {
  color: var(--primary-blue);
}

/* Search Overlay Background */
.search-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
}

.search-backdrop.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

/* Small Mobile */
@media (max-width: 480px) {
  .logo-text {
    font-size: 16px;
    color: var(--bs-white);
  }
  
  .banner-title {
    font-size: 24px;
  }
  
  .banner-slide {
    min-height: 350px;
  }
  
  .carousel-indicators {
    bottom: 20px;
  }
  
  .slide-counter {
    display: none;
  }
  
  .banner-controls {
    display: none;
  }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open,
body.search-open {
  overflow: hidden;
}
