/* ===================================
   TEECOM Website Custom Styles
   Bootstrap 5 Based
   =================================== */

/* ===================================
   Font Imports
   =================================== */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
@font-face {
  font-family: "Century Gothic";
  src: url("https://www.dafontfree.io/data/25/century-gothic-font-free/CenturyGothic.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Century Gothic";
  src: url("https://www.dafontfree.io/data/25/century-gothic-font-free/CenturyGothic-Bold.ttf")
    format("truetype");
  font-weight: bold;
  font-style: normal;
}

/* ===================================
   Global Styles
   =================================== */
:root {
  --primary-color: #0d6efd;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --info-color: #0dcaf0;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-color: #f8f9fa;
  --dark-color: #212529;
}

body {
  font-family: Montserrat, Arial, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    sans-serif;
  color: #333;
  line-height: 1.7;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}
@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
}
/* ===================================
   Navigation
   =================================== */
.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
}

/* Nav link wrapper for dropdown */
.nav-link-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link-wrapper .nav-link {
  padding-right: 0.25rem;
}

.dropdown-toggle-icon {
  cursor: pointer;
  padding: 0.5rem 0.5rem 0.5rem 0.25rem;
  color: rgba(249, 249, 249, 1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.dropdown-toggle-icon:hover {
  color: rgba(249, 249, 249, 1);
}

.nav-item.dropdown.show .dropdown-toggle-icon i {
  transform: rotate(180deg);
}

.dropdown-toggle-icon i {
  transition: transform 0.3s ease;
}

/* Dropdown hover effect */
.nav-item.dropdown:hover .dropdown-menu,
.nav-item.dropdown .dropdown-menu:hover {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.dropdown .dropdown-menu:hover {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  background: #212529;
  margin-top: 0;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-item {
  color: rgba(249, 249, 249, 1);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  font-weight: 400;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-menu li:hover {
  background: #212529 !important;
  color: rgba(249, 249, 249, 1);
  font-weight: 400;
}
.nav-item.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: transparent;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(249, 249, 249, 1);
  padding-left: 10px;
}

.navbar-brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  margin-right: 6px;
}
.navbar-nav .nav-item {
  padding: 0 6px;
}

.navbar-nav .nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: rgba(249, 249, 249, 1);
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: rgba(249, 249, 249, 1);
  font-weight: 600;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
  background-color: var(--primary-color);
  color: white;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
  background: url("../../images/index/bg.jpg") center/cover;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.bg-primary.hero-section,
.hero-section.bg-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}
.home-about-us {
  padding: 40px 0;
  background: rgba(201, 218, 248, 1);
}
.home-about-us h2,
.idea-delivery-section h2,
.our-scale-section h2 {
  color: #1c4587;
  font-family: Montserrat, Arial;
  font-weight: 500;
  vertical-align: baseline;
  font-size: 36px;
}
.home-about-us p,
.idea-delivery-section p {
  font-family: Montserrat, Arial;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: #1c4587;
  text-align: justify;
}
.home-about-us p {
  text-align: center;
}
.home-about-us .text-lang,
.idea-delivery-section .text-lang {
  color: #1c4587;
  font-family: Montserrat, Arial;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  vertical-align: baseline;
  text-decoration: none;
}

.our-scale-section {
  background: #fff;
}
.index-page .idea-delivery-section p {
  color: #1155cc;
  font-weight: 300;
  text-align: justify;
}
.our-scale-card {
  transition: all 0.3s ease;
  border: none;
}

.our-scale-card:hover {
  transform: translateY(-10px);
}

.our-scale-card .card-body {
  position: relative;
  overflow: hidden;
  padding: 6px;
}

.our-scale-card .card-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.our-scale-card:hover .card-body::before {
  transform: scaleX(1);
}
.card-body h3 {
  color: #1c4587;
  font-family: Montserrat, Arial;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
}
.card-body p,
.card-body p.text-lang {
  color: #1c4587;
  font-family: "Times New Roman", Arial;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
.card-body h3,
.card-body p {
  padding: 0 10px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}
.our-scale-number {
  color: #1c4587;
  font-size: 18px;
  font-weight: 400;
  vertical-align: baseline;
}

.our-scale-icon {
  transition: transform 0.3s ease;
}

.our-scale-card:hover .our-scale-icon {
  transform: scale(1.1) rotate(5deg);
}
.textiles-product-section .our-scale-card {
  padding: 15px 5px 35px 5px;
}

/* From Idea to Delivery Section Styling */
.idea-delivery-section {
  background: #fff;
}

.idea-delivery-image {
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.idea-delivery-image:hover {
  transform: scale(1.02);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.idea-delivery-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(102, 126, 234, 0.1),
    rgba(118, 75, 162, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.idea-delivery-image:hover::before {
  opacity: 1;
}

.idea-delivery-content {
  padding-left: 2rem;
}
.mission-statement-section p {
  color: #1155cc;
  font-family: Montserrat, Arial;
  font-style: italic;
  font-weight: 300;
  vertical-align: baseline;
  font-size: 16px;
  line-height: 1.5;
}
.mission-statement-section p.text-lang {
  color: #1c4587;
  font-style: italic;
  font-weight: 400;
  vertical-align: baseline;
  font-style: italic;
  font-weight: 300;
  vertical-align: baseline;
  font-size: 16px;
  line-height: 1.5;
}

/* Key Product Lines Hero Section Styling */
.key-product-lines-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  background: url("../../images/product-line/unnamed.jpg") center/cover;
  position: relative;
  overflow: hidden;
  height: 360px;
}

.key-product-lines-section {
  background: #fff;
  padding: 40px 0 60px 0;
  max-width: 1280px;
  margin: 0 auto;
}
.key-product-lines-section h3.our-scale-number {
  background-color: rgba(28, 69, 135, 1);
  color: rgba(249, 249, 249, 1);
  border-color: rgba(28, 69, 135, 1);
  padding: 6px 10px;
  border-radius: 4px;
}
.mission-product-lines-section p {
  color: #1c4587;
}

.key-product-lines-section h3.our-scale-number a {
  color: rgba(249, 249, 249, 1);
  text-decoration: none;
}
.key-product-lines-section h3.our-scale-number a:hover {
  color: rgba(249, 249, 249, 1);
  text-decoration: none;
}

/* Drinkware Hero Section Styling */
.drinkware-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  background: url("../../images/drinkware/bg-drinkware.jpg") center/cover;
  position: relative;
  overflow: hidden;
  height: 360px;
}
.drinkware-content {
  background: #fff;
}
.drinkware-content p {
  color: #1c4587;
}
.drinkware-content p.italic {
  font-style: italic;
}
.every-detail-section .idea-delivery-image img {
  width: 100%;
}

.every-detail-section .text-lang-title {
  color: #1c4587;
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
}
.drinkware-product-section p {
  color: #1c4587;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  margin: 0;
}
.textiles-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  background: url("../../images/textiles/bg_textiles.jpg") center/cover;
  position: relative;
  overflow: hidden;
  height: 360px;
}
.textiles-page .home-about-us p {
  text-align: justify;
  color: #783f04;
  font-family: Montserrat, Arial;
  font-size: 11pt;
  font-weight: 400;
  vertical-align: baseline;
}
.textiles-page .home-about-us p.text-lang {
  text-align: justify;
}
.textiles-page .home-about-us p.text-lang-title {
  text-align: center;
}
.textiles-page .home-about-us {
  background: rgba(255, 255, 255, 1);
}
.textiles-product-section h5 {
  color: #7b5832;
  font-family: Montserrat, Arial;
  font-variant: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.5;
  vertical-align: baseline;
}
.textiles-safe-section {
  background-position: bottom right;
  background-image: url("../../images/textiles/bg_textiles02.jpg");
  background-size: cover;
  padding: 20px 0;
}

.textiles-safe-section h2,
.textiles-safe-section p,
.textiles-mission-section p,
.textiles-mission-section p.text-lang {
  color: #7b5832;
  font-weight: 500;
}
.textiles-safe-section .text-lang-title {
  font-size: 28px;
}

.textiles-mission-section p.text-lang {
  color: #7b5832;
  font-weight: 400;
  line-height: 1.7;
}

.textiles-product-section {
  padding: 40px 0;
}
.textiles-product-section .our-scale-card .card-body {
  padding: 0px;
}
/* Home Decor Hero Section Styling */
.home-decor-hero {
  background: url("../../images/home-decor-gift/bg_homedecor.jpg") center/cover;
  position: relative;
  overflow: hidden;
  background-position: center center;
  background-size: cover;
  transform: translate3d(0px, 0px, 0px);
}
.home-decor-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(33, 33, 33);
  opacity: 0.5;
  display: block;
}
.home-decor-hero::before {
  opacity: 0.5;
}
.home-decor-hero h1 {
  padding: 8% 0;
  color: #fff;
  font-size: 68px;
  font-weight: 600;
}
.home-decor-page .home-decor-content {
  padding: 40px 0 0px 0;
  background: #fff;
}

.home-decor-page .home-decor-content p {
  color: #274e13;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}

.home-decor-page .textiles-safe-section h2,
.home-decor-page .textiles-safe-section p,
.home-decor-page .textiles-mission-section p,
.home-decor-page .textiles-mission-section p.text-lang,
.home-decor-product-section p {
  color: #274e13;
}

.home-decor-product-section p {
  text-align: center;
  font-weight: 300;
}

/* Suppliers Hero Section Styling */
.suppliers-hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  background: url("../../images/supplier/bg_supplier.jpg") center/cover;
  position: relative;
  overflow: hidden;
  height: 360px;
}
.suppliers-content {
  background: #fff;
}
.suppliers-content .brd {
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.150000006);
}
.suppliers-product-section .our-scale-card {
  border: none;
  padding: 20px 10px;
}
.suppliers-product-section .our-scale-card .card-body {
  padding: 0px;
}
.suppliers-product-section .our-scale-card .card-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.suppliers-product-section .our-scale-card .card-body h5 {
  color: #1c4587;
  font-size: 18px;
  font-weight: 300;
  vertical-align: baseline;
  padding: 10px 0;
}

.suppliers-product-section .our-scale-card .card-body p {
  color: #1c4587;
}

.suppliers-about-section::before,
.suppliers-about-textiles-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(33, 33, 33);
  opacity: 0.5;
  display: block;
}
.suppliers-about-section::before,
.suppliers-about-textiles-section::beforebefore {
  opacity: 0.5;
}

.suppliers-about-section {
  background: url("../../images/supplier/bg_about.jpg") center/cover;
  position: relative;
  overflow: hidden;
}
.suppliers-about-section h2,
.suppliers-about-textiles-section h2 {
  color: #fff;
  font-size: 36px;
  font-weight: 400;
  text-align: center;
  padding: 4% 0;
  position: relative;
}
.quality-products-section {
  padding: 0px 0 50px 0;
}
.quality-products-section .quality-products-title p.text-lang-title {
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
}

.quality-products-section .quality-products-title {
  padding: 0 0 40px 0;
}
.quality-products-section .quality-products-title h2 {
  font-size: 36px;
  font-weight: 300;
  text-align: center;
}
.quality-products-section .quality-products-title p {
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}
.suppliers-about-textiles-section {
  background: url("../../images/supplier/bg_about02.jpg") center/cover;
  position: relative;
  overflow: hidden;
}

.durable-products-title {
  padding: 0 0 40px 0;
}

.durable-products-title h2,
.durable-products-title p,
.durable-products-title p.text-lang,
.durable-flexible-content h3,
.durable-flexible-content p,
.durable-flexible-content p.text-lang {
  color: #7b5832;
  text-align: center;
  font-weight: 300;
  margin: 0;
}
.durable-products-title p.italic {
  font-style: italic;
}

.durable-flexible-content h3,
.durable-flexible-content p.text-lang {
  font-weight: 400;
  text-align: justify;
  padding: 10px 0;
}
.durable-flexible-content p.text-lang {
  font-size: 20px;
  padding-bottom: 20px;
}
.durable-flexible-content p {
  text-align: justify;
}
.content-bottom {
  align-items: end;
}
.durable-products-section {
  padding: 0px 0 50px 0;
}

.suppliers-about-section-buyer {
  background: #1a3a6b url("../../images/supplier/bg_about03_new_optimized.jpeg")
    center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
  display: flex;
  padding: 4% 0;
  align-items: center;
  justify-content: center;
}
.suppliers-about-section-buyer h2 {
  color: #fff;
  font-family: "Century Gothic";
  font-size: 22px;
  text-align: center;
  letter-spacing: 1px;
}

.suppliers-about-section-buyer p {
  color: #fff;
  font-family: "Century Gothic";
  font-size: 18px;
  text-align: center;
  margin: 0;
  letter-spacing: 1px;
}

.suppliers-about-section-buyer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.025);
  pointer-events: none;
  z-index: 1;
}

.suppliers-about-section-buyer .container {
  position: relative;
  z-index: 2;
}

.contact-hero {
  background: url("../../images/supplier/bg_about03_new_optimized.jpeg")
    center/cover;
  position: relative;
  overflow: hidden;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-hero h2 {
  font-family: "Century Gothic";
  font-size: 32px;
  color: #fff;
  margin: 0;
  padding-left: 10px;
}
.contact-hero p.logo {
  margin: 0;
}
.thank-you-section {
  padding: 0px 0 70px 0;
}
.thank-you-section h2 {
  font-size: 80px;
  color: #1c4587;
  font-family: "Caveat";
  font-weight: 400;
}
@media (max-width: 991.98px) {
  .idea-delivery-content {
    padding-left: 0;
    margin-top: 2rem;
    padding: 0 15px;
  }
  .key-product-lines-hero {
    background: url("../../images/product-line/unnamed.jpg") center/cover;
    height: 230px;
  }
  .drinkware-hero,
  .textiles-hero {
    height: 230px;
  }
  .textiles-content {
    padding: 0 15px;
  }
  .textiles-product-section .our-scale-card,
  .textiles-mission-section {
    padding: 0 15px;
  }
  .home-decor-hero h1 {
    padding: 8% 0;
    color: #fff;
    font-size: 33px;
    font-weight: 600;
  }
  .contact-hero {
    height: 240px;
  }
  .textiles-product-section .our-scale-card {
    padding: 15px 15px 5px 15px;
  }
  .contact-hero h2 {
    font-size: 20px;
    text-align: left;
  }
}

.col-lg-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}

@media (max-width: 991.98px) {
  .col-lg-2-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 575.98px) {
  /*.col-lg-2-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }*/
  .idea-delivery-image {
    width: 40%;

    margin: 0 auto;
    object-fit: cover;
  }
}
/* ===================================
   Cards & Feature Cards
   =================================== */
.card {
  transition: all 0.3s ease;
  border-radius: 0.75rem;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.0475) !important;
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #764ba2);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.category-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.category-card:hover {
  border-color: var(--primary-color);
  background-color: white !important;
  transform: translateY(-3px);
}

/* ===================================
   Buttons
   =================================== */
.btn {
  padding: 0.625rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5568d3 0%, #65408b 100%);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(102, 126, 234, 0.3);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-light {
  background-color: white;
  color: var(--primary-color);
  border: 2px solid white;
}

.btn-light:hover {
  background-color: transparent;
  color: white;
  border-color: white;
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
}

/* ===================================
   Forms
   =================================== */
.form-control,
.form-select {
  padding: 0.75rem 1rem;
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #495057;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.3;
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-weight: 700;
}

.lead {
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.7;
}

/* ===================================
   Utilities
   =================================== */
.shadow-sm {
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.rounded {
  border-radius: 0.5rem !important;
}

/* ===================================
   Sections
   =================================== */
section {
  position: relative;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

/* ===================================
   Footer
   =================================== */
footer {
  margin-top: auto;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: white;
}

/* ===================================
   Icons
   =================================== */
.bi {
  vertical-align: middle;
}

/* Social media buttons */
.btn-outline-primary.btn-lg .bi {
  font-size: 1.2rem;
}

/* ===================================
   Animations
   =================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1199.98px) {
  .navbar-brand {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 1rem;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 0;
  }

  .nav-link-wrapper {
    width: 100%;
    justify-content: space-between;
  }

  .nav-link-wrapper .nav-link {
    flex: 1;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    background: #1a1a1a;
    margin-left: 1rem;
    margin-top: 0.5rem;
  }

  .nav-item.dropdown:hover .dropdown-menu {
    display: none;
  }

  .nav-item.dropdown.show .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Force dropdown to work on mobile */
  .nav-item.dropdown .dropdown-menu {
    position: static !important;
    transform: none !important;
    background: #1a1a1a;
    margin-left: 1rem;
    margin-top: 0.5rem;
    display: none;
    opacity: 0;
    visibility: hidden;
  }

  .nav-item.dropdown.show .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    background: transparent;
    margin: 0;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .display-5 {
    font-size: 2rem;
  }
  .navbar-brand {
    font-size: 15px;
  }
  .home-about-us h2,
  .idea-delivery-section h2,
  .our-scale-section h2 {
    font-weight: 500;
    vertical-align: baseline;
    font-size: 26px;
  }
  .home-about-us p,
  .idea-delivery-section p {
    font-size: 15px;
    line-height: 1.7;
  }
  .card-body h3,
  .card-body p {
    font-size: 16px;
    line-height: 1.7;
  }
  .mission-statement-section p,
  .mission-statement-section p.text-lang {
    font-size: 14px;
    line-height: 1.7;
  }
  .suppliers-about-section h2,
  .suppliers-about-textiles-section h2 {
    padding: 12% 0;
    line-height: 2;
  }
  .quality-products-section .idea-delivery-image {
    width: 100%;
    margin: 0 auto;
    object-fit: cover;
  }
  .quality-products-section {
    padding: 0px 10px 50px 10px;
  }
  .quality-products-section .quality-products-title h2 {
    font-size: 26px;
    text-align: center;
    padding: 0 15px;
  }
  .durable-products-title {
    padding: 0 20px 40px 20px;
  }
  .durable-products-title p.text-lang-title {
    padding-bottom: 20px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1120px) {
  .suppliers-about-section-buyer {
    padding: 10% 0;
  }
  .suppliers-about-section-buyer h2 {
    font-size: 17px;
    letter-spacing: 0px;
  }
}

@media (max-width: 767.98px) {
  .suppliers-about-section-buyer {
    padding: 16% 0;
  }
  .suppliers-about-section-buyer h2 {
    font-size: 17px;
    letter-spacing: 0px;
  }

  .suppliers-about-section-buyer p {
    font-size: 14px;
    letter-spacing: 0px;
  }

  .hero-section {
    padding: 3rem 0 !important;
  }

  .display-4 {
    font-size: 2rem;
  }

  .display-5 {
    font-size: 1.75rem;
  }

  .btn-lg {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
  .our-scale-section .g-4 {
    padding: 0 10px;
  }
  .our-scale-section .col-md-6.col-lg-2-4 {
    padding: 0 6px;
  }
}

@media (max-width: 575.98px) {
  .card-body {
    /*padding: 1.5rem !important;*/
  }

  h1,
  .h1 {
    font-size: 1.75rem;
  }

  h2,
  .h2 {
    font-size: 1.5rem;
  }
  .navbar-brand {
    font-size: 14px;
  }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
  .navbar,
  .btn,
  footer {
    display: none;
  }

  body {
    color: black;
    background: white;
  }
}

/* ===================================
   Custom Scrollbar (Webkit browsers)
   =================================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6c757d 0%, #6c757d 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #6c757d 0%, #6c757d 100%);
}

/* ===================================
   Accessibility
   =================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* ===================================
   Loading States
   =================================== */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* ===================================
   Custom Enhancements
   =================================== */
.text-gradient {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.border-gradient {
  border: 2px solid transparent;
  background-image: linear-gradient(white, white),
    linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
