.opacity-20 {
   opacity: .2;
}

.hero-section {
   height: 100vh;
   position: relative;
   margin-top: 0;
}

.hero-section .swiper-slide img {
   object-fit: cover;
   height: 100vh;
   width: 100%;
}

.slide-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, .6));
   display: flex;
   align-items: center;
   justify-content: center;
   flex-direction: column;
}

.hero-content {
   text-align: center;
   color: #fff;
   z-index: 10;
   padding: 0 20px;
}

.hero-title {
   font-size: 6rem;
   font-weight: 700;
   letter-spacing: 10px;
   margin-bottom: 1rem;
   text-transform: uppercase;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
}

.hero-subtitle {
   font-size: 3.5rem;
   font-weight: 400;
   letter-spacing: 5px;
   text-transform: uppercase;
}

.swiper-pagination-bullet {
   width: 12px;
   height: 12px;
   background: #fff;
   opacity: .5;
}

.swiper-pagination-bullet-active {
   opacity: 1;
   background: #00C4CC;
}

@media (max-width:1200px) {
   .hero-title {
      font-size: 4rem;
      letter-spacing: 8px
   }

   .hero-subtitle {
      font-size: 1.8rem
   }
}

.product-section {
   padding: 80px 0;
}

.product-tabs {
   display: flex;
   justify-content: center;
   gap: 0;
   margin-bottom: 15px;
   border-bottom: 2px solid #e0e0e0;
   overflow-x: auto;
   overflow-y: hidden;
   -webkit-overflow-scrolling: touch;
   scrollbar-width: thin;
   scrollbar-color: #00C4CC #f0f0f0;

}

/* Custom Scrollbar for Webkit browsers */
.product-tabs::-webkit-scrollbar {
   height: 2px;
}

.product-tabs::-webkit-scrollbar-track {
   background: #f0f0f0;
}

.product-tabs::-webkit-scrollbar-thumb {
   background: #00C4CC;
   border-radius: 2px;
}

.product-tabs::-webkit-scrollbar-thumb:hover {
   background: #00C4CC;
}

.product-tab {
   padding: 20px 40px;
   font-size: 1.1rem;
   font-weight: 600;
   text-transform: uppercase;
   color: #333;
   background: none;
   border: none;
   cursor: pointer;
   position: relative;
   transition: all .3s ease;
   letter-spacing: 1px;
}

.product-tab:hover {
   color: #00C4CC;
}

.product-tab.active {
   color: #00C4CC;
}

.product-tab.active::after {
   content: '';
   position: absolute;
   bottom: -2px;
   left: 0;
   width: 100%;
   height: 3px;
   background-color: #00C4CC;
}

.product-content {
   display: none;
}

.product-content.active {
   display: block;
   animation: fadeIn .5s ease;
}

@keyframes fadeIn {
   from {
      opacity: 0;
      transform: translateY(20px)
   }

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

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

.product-card {
   border-radius: 10px;
   overflow: hidden;
   transition: all .3s ease;
   cursor: pointer;
}

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

.product-image {
   width: 100%;
   object-fit: cover;
   background-color: #fff;
}

.product-info {
   padding: 25px;
   text-align: center;
}

.product-name {
   font-size: 1rem;
   font-weight: 500;
   color: #333;
   text-transform: uppercase;
   letter-spacing: .5px;
   margin: 0;
}

@media (max-width:1200px) {
   .product-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 30px
   }
}

@media (max-width:992px) {
   .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 25px
   }

   .product-tab {
      padding: 15px 25px;
      font-size: 1rem
   }

   .product-section {
      padding: 60px 0
   }
}

@media (max-width:768px) {
   .product-name {
      font-size: .9rem
   }

   .product-info {
      padding: 5px
   }

   .product-tabs {
      gap: 15px
   }

   .product-tab {
      padding: 12px 20px;
      font-size: .9rem
   }
}

@media (max-width:576px) {
   .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px
   }

   .product-tab {
      padding: 5px 0;
      font-size: .85rem
   }

   .product-section {
      padding: 40px 0
   }
}

.why-choose-section {
   background: url('../images/bg-why.png');
   background-size: cover;
   background-position: center;
   background-attachment: fixed;
   padding: 100px 0;
   color: #fff;
   position: relative;
}

.why-choose-section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 800"%3E%3Cg opacity=".05"%3E%3Ccircle cx="200" cy="150" r="100" fill="%23fff"/%3E%3Ccircle cx="1700" cy="600" r="150" fill="%23fff"/%3E%3Ccircle cx="500" cy="650" r="80" fill="%23fff"/%3E%3Ccircle cx="1400" cy="200" r="120" fill="%23fff"/%3E%3C/g%3E%3C/svg%3E');
   background-size: cover;
   pointer-events: none;
}

.section-title {
   font-size: 3rem;
   font-weight: 700;
   text-transform: uppercase;
   margin-bottom: 60px;
   letter-spacing: 3px;
   position: relative;
   display: inline-block;
}

.section-title::after {
   content: '';
   position: absolute;
   bottom: -15px;
   left: 0;
   width: 100%;
   height: 3px;
   background-color: #00C4CC;
}

.features-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 60px;
   margin-top: 80px;
   position: relative;
   z-index: 1;
}

.feature-item {
   display: flex;
   gap: 25px;
   align-items: flex-start;
}

.feature-icon {
   flex-shrink: 0;
   width: 60px;
   height: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.feature-icon svg {
   width: 50px;
   height: 50px;
   fill: #00C4CC;
}

.feature-content {
   flex: 1;
}

.feature-title {
   font-size: 1.5rem;
   font-weight: 700;
   text-transform: uppercase;
   margin-bottom: 15px;
   letter-spacing: 1px;
}

.feature-description {
   font-size: 1rem;
   line-height: 1.8;
   color: #e0e0e0;
   text-align: justify;
}

@media (max-width:992px) {
   .why-choose-section {
      padding: 80px 0
   }

   .section-title {
      font-size: 2.5rem
   }

   .features-grid {
      gap: 50px
   }

   .feature-title {
      font-size: 1.3rem
   }
}

@media (max-width:768px) {
   .why-choose-section {
      padding: 60px 0;
      background-attachment: scroll
   }

   .section-title {
      font-size: 2rem
   }

   .features-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-top: 60px
   }

   .feature-icon {
      width: 50px;
      height: 50px
   }

   .feature-icon svg {
      width: 40px;
      height: 40px
   }

   .feature-title {
      font-size: 1.2rem
   }

   .feature-description {
      font-size: .95rem
   }
}

@media (max-width:576px) {
   .why-choose-section {
      padding: 50px 0
   }

   .section-title {
      font-size: 1.8rem;
      margin-bottom: 40px
   }

   .features-grid {
      gap: 35px;
      margin-top: 50px
   }

   .feature-item {
      gap: 20px
   }
}

.export-markets-section {
   background: url('../images/branch-bg.png');
   position: relative;
   overflow: hidden;
}

.export-markets-wrapper {
   min-height: 700px;
   align-items: center;
}

.map-container {
   position: relative;
   padding: 60px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.world-map {
   width: 100%;
   max-width: 900px;
   height: auto;
   position: relative;
   z-index: 1;
}

.island-decoration {
   position: absolute;
   bottom: 0;
   left: 50px;
   width: 200px;
   height: auto;
   z-index: 2;
}

.markets-info {
   background: #fff;
   padding: 80px 60px;
   box-shadow: -10px 0 30px rgba(0, 0, 0, .1);
   height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
}

.markets-title {
   font-size: 2.5rem;
   font-weight: 700;
   color: #00C4CC;
   text-transform: uppercase;
   margin-bottom: 25px;
   letter-spacing: 2px;
}

.markets-description {
   font-size: 1.1rem;
   color: #333;
   margin-bottom: 40px;
   line-height: 1.6;
}

.markets-list {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 20px;
   margin-bottom: 40px;
}

.market-item {
   display: flex;
   align-items: center;
   gap: 15px;
}

.market-icon {
   width: 35px;
   height: 35px;
   flex-shrink: 0;
}

.market-icon svg {
   width: 100%;
   height: 100%;
   fill: #00C4CC;
}

.market-name {
   font-size: 1rem;
   font-weight: 700;
   color: #000;
   text-transform: uppercase;
   letter-spacing: .5px;
}

.markets-button {
   display: inline-block;
   padding: 15px 40px;
   background-color: #00C4CC;
   color: #fff;
   text-transform: uppercase;
   font-weight: 700;
   font-size: 1rem;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   transition: all .3s ease;
   text-decoration: none;
   text-align: center;
   align-self: center;
   letter-spacing: 1px;
}

.markets-button:hover {
   background-color: #e55a25;
   transform: translateY(-2px);
   box-shadow: 0 5px 15px rgba(255, 107, 53, .3);
}

@media (max-width:1200px) {
   .markets-info {
      padding: 60px 40px
   }

   .markets-title {
      font-size: 2.2rem
   }
}

@media (max-width:992px) {
   .export-markets-wrapper {
      grid-template-columns: 1fr
   }

   .map-container {
      padding: 40px 20px;
      min-height: 400px
   }

   .island-decoration {
      width: 150px;
      left: 20px
   }

   .markets-info {
      padding: 50px 30px;
      box-shadow: 0 -10px 30px rgba(0, 0, 0, .1)
   }

   .markets-title {
      font-size: 2rem
   }

   .markets-list {
      gap: 15px
   }
}

@media (max-width:768px) {
   .map-container {
      padding: 30px 15px;
      min-height: 350px
   }

   .markets-info {
      padding: 40px 25px
   }

   .markets-title {
      font-size: 1.8rem
   }

   .markets-description {
      font-size: 1rem
   }

   .markets-list {
      grid-template-columns: 1fr 1fr;
      gap: 10px
   }

   .island-decoration {
      width: 120px
   }
}

@media (max-width:576px) {
   .export-markets-section {
      min-height: auto
   }

   .map-container {
      padding: 20px 10px;
      min-height: 300px
   }

   .markets-info {
      padding: 35px 20px
   }

   .markets-title {
      font-size: 1.6rem;
      margin-bottom: 20px
   }

   .markets-description {
      font-size: .95rem;
      margin-bottom: 30px
   }

   .market-icon {
      width: 30px;
      height: 30px
   }

   .market-name {
      font-size: .9rem
   }

   .markets-button {
      width: 100%;
      padding: 12px 30px;
      font-size: .9rem
   }

   .island-decoration {
      width: 100px;
      left: 10px
   }
}

.news-awards-section {
   background: url('../images/bg-news.png') no-repeat;
   background-size: cover;
   background-position: center;
   padding: 100px 0;
   position: relative;
   overflow: hidden;
}

.news-awards-section::before {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   height: 200px;
   background: url('../images/pattern-news.svg') no-repeat;
   background-size: cover;
   pointer-events: none;
}

.news-awards-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   position: relative;
   z-index: 1;
}

.news-box {
   background: #fff;
   border-radius: 15px;
   padding: 40px;
   box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
}

.news-header {
   margin-bottom: 30px;
}

.news-subtitle {
   font-size: 1.1rem;
   color: #00C4CC;
   font-weight: 600;
   margin-bottom: 5px;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.news-title {
   font-size: 2rem;
   font-weight: 700;
   color: #00C4CC;
   text-transform: uppercase;
   letter-spacing: 1px;
}

.news-list {
   display: flex;
   flex-direction: column;
   gap: 30px;
}

.news-item {
   display: flex;
   gap: 20px;
   padding-bottom: 30px;
   border-bottom: 1px solid #e0e0e0;
}

.news-item:last-child {
   border-bottom: none;
   padding-bottom: 0;
}

.news-image {
   width: 150px;
   height: 110px;
   border-radius: 8px;
   object-fit: cover;
   flex-shrink: 0;
}

.news-content {
   flex: 1;
}

.news-item-title a {
   font-size: 1.1rem;
   font-weight: 700;
   color: #333;
   margin-bottom: 10px;
   line-height: 1.4;
   text-decoration: none;
   transition: all .3s ease;
}

.news-item-title:hover {
   color: #00C4CC;
   cursor: pointer;
}

.news-excerpt {
   font-size: .95rem;
   color: #666;
   line-height: 1.6;
}

.news-more {
   text-align: center;
   margin-top: 30px;
}

.news-more-link {
   color: #00C4CC;
   text-decoration: none;
   font-weight: 600;
   font-size: 1rem;
   transition: all .3s ease;
}

.news-more-link:hover {
   color: #e55a25;
   text-decoration: underline;
}

.awards-box {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   text-align: center;
}

.awards-title {
   font-size: 2.5rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 40px;
   text-transform: uppercase;
   letter-spacing: 2px;
}

.award-certificate {
   background: #fff;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
   margin-bottom: 50px;
   transform: rotate(-2deg);
   transition: all .3s ease;
}

.award-certificate:hover {
   transform: rotate(0deg) scale(1.05);
}

.award-certificate img {
   width: 100%;
   max-width: 350px;
   height: auto;
   border-radius: 5px;
}

.find-us-title {
   font-size: 2rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 30px;
   text-transform: uppercase;
}

.platform-links {
   display: flex;
   gap: 30px;
   justify-content: center;
}

.platform-item {
   width: 120px;
   height: 120px;
   background: #fff;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
   transition: all .3s ease;
   text-decoration: none;
   border: 3px solid #00C4CC;
}

.platform-item:hover {
   transform: translateY(-10px);
   box-shadow: 0 15px 35px rgba(0, 0, 0, .3);
}

.platform-item img {
   width: 80px;
   height: auto;
}

@media (max-width:1200px) {
   .news-awards-wrapper {
      gap: 40px
   }

   .awards-title {
      font-size: 2.2rem
   }

   .find-us-title {
      font-size: 1.8rem
   }
}

@media (max-width:992px) {
   .news-awards-section {
      padding: 80px 0
   }

   .news-awards-wrapper {
      grid-template-columns: 1fr;
      gap: 50px
   }

   .news-box {
      padding: 30px
   }

   .news-title {
      font-size: 1.8rem
   }

   .awards-title {
      font-size: 2rem
   }

   .platform-links {
      gap: 25px
   }

   .platform-item {
      width: 110px;
      height: 110px
   }

   .platform-item img {
      width: 70px
   }
}

@media (max-width:768px) {
   .news-awards-section {
      padding: 60px 0
   }

   .news-box {
      padding: 25px
   }

   .news-item {
      flex-direction: column
   }

   .news-image {
      width: 100%;
      height: 200px
   }

   .news-title {
      font-size: 1.6rem
   }

   .awards-title {
      font-size: 1.8rem
   }

   .find-us-title {
      font-size: 1.6rem
   }

   .award-certificate img {
      max-width: 280px
   }
}

@media (max-width:576px) {
   .news-awards-section {
      padding: 50px 0
   }

   .news-box {
      padding: 20px
   }

   .news-title {
      font-size: 1.4rem
   }

   .news-subtitle {
      font-size: 1rem
   }

   .news-item-title {
      font-size: 1rem
   }

   .news-excerpt {
      font-size: .9rem
   }

   .awards-title {
      font-size: 1.6rem
   }

   .find-us-title {
      font-size: 1.4rem
   }

   .platform-links {
      gap: 20px
   }

   .platform-item {
      width: 90px;
      height: 90px
   }

   .platform-item img {
      width: 55px
   }

   .award-certificate img {
      max-width: 240px
   }
}