:root {
  --blue: #134094;
  --white: #FFFFFF;
  --dark: #333333;
  --title: #1A1A18;
  --gradient: linear-gradient(180deg, #263185 21.64%, #0062AA 81.34%);
  --gradient-two: linear-gradient(0deg, #134094, #134094), linear-gradient(0deg, #134094 0%, #06142E 100%);
  --bg-light: #F5F7FA;
}


* {
  margin: 0px;
  padding: 0px;
  font-family: "Anek Bangla", sans-serif;
}

body {
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  width: 100%;
}

p,
a,
label,
span {
  margin: 0px;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.container {
  max-width: 1194px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.theme_btn {
  padding: 17px 20px 17px 20px;
  background: var(--blue);
  border-radius: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  line-height: 120%;
  border: 1px solid var(--blue);
  display: inline-block;
  transition: all ease-in-out 250ms;
  display: flex;
  align-items: center;
  justify-content: center;

}

.theme_btn i {
  margin-left: 8px;
}

.theme_btn:hover {
  background: var(--white);
  color: var(--blue);
}

.btn-secondary-custom {
  padding: 17px 20px 17px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  color: var(--blue);
  background-color: transparent;
  border: 1px solid var(--blue);
  border-radius: 10px;
}

.btn-secondary-custom:hover {
  background-color: var(--blue);
  color: #fff;
}


.font-14px {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}

.font-16px {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
}

.font-18px {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

.gradient-text {
  /*display: inline-block;*/
  background: var(--gradient);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading-h1 {
  font-size: 56px;
  font-weight: 700;
  color: var(--title);
  line-height: 120%;
}

.heading-h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  color: var(--title);
}

.body-color {
  color: var(--dark);
}

.heading-color {
  color: var(--title);
}

.color-333333 {
  color: var(--dark);
}

.color-134094 {
  color: var(--blue);
}

.color-1A1A18 {
  color: var(--title) !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

.rounded-4-5 {
  border-radius: 20px !important;
}
.mx-w-936{
  max-width: 936px !important;
}



/* ===== HEADER STYLES ===== */
.header {
  position: relative;
  z-index: 99;
}

.hd_social a {
  transition: all ease-in-out 250ms;
}

.hd_social a:hover {
  opacity: 0.6;
}

.hd_contact a {
  transition: all ease-in-out 250ms;
}

.hd_contact a:hover {
  opacity: 0.6;
}


.header_top {
  background: var(--blue);
}

.header_top * {
  color: var(--white);
}

.header_middle {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
  position: relative;
  z-index: 1;
}

.header_middle .navbar-brand {
  max-width: 221px;
  width: fit-content;
  margin-right: auto;
  margin-left: 0;
}

/* NAV LINK BASE */
.header_middle .nav-link {
  position: relative;
  font-weight: 500;
  padding: 4px 0;
  color: #333;
  transition: color 0.3s ease;
}

/* TEXT WRAPPER */
.header_middle .nav-text {
  position: relative;
  display: inline-block;
}

/* DOTTED LINES */
/*.header_middle .nav-text::before,
.header_middle .nav-text::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #134094 0,
    #134094 6px,
    transparent 6px,
    transparent 12px
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}*/

/* TOP LINE */
/*.header_middle .nav-text::before {
  top: -6px;
}*/

/* BOTTOM LINE */
/*.header_middle .nav-text::after {
  bottom: -6px;
}*/

/* HOVER + ACTIVE */
/*.header_middle .nav-link:hover,
.header_middle .nav-link.active {
  color: #134094;
}

.header_middle .nav-link:hover .nav-text::before,
.header_middle .nav-link:hover .nav-text::after,
.header_middle .nav-link.active .nav-text::before,
.header_middle .nav-link.active .nav-text::after {
  opacity: 1;
}*/

.header_middle .nav-link:hover {
  color: var(--title) !important;
}

/* DROPDOWN ARROW */
.header_middle .dropdown-toggle::after {
  margin-left: 6px;
  vertical-align: middle;
  border-top-color: #333;
  transition: transform 0.3s ease, border-top-color 0.3s ease;
}

/* ARROW HOVER + ACTIVE */
.header_middle .nav-link:hover.dropdown-toggle::after,
.header_middle .nav-link.active.dropdown-toggle::after {
  border-top-color: #134094;
}



.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  padding: 145px 0 36px 0;
  background-image: url("../Images/hero-bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  min-height: 600px;
  margin-top: -109px;
}


/* DESCRIPTION */
.hero-desc {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 40px;
}

/* RIGHT IMAGE */
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
}




/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background-color: var(--white);
}

/* IMAGE */
.about-img-main img {
  width: 100%;
  border-radius: 24px;
  display: block;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

}




/* ===== PRODUCT SECTION ===== */
.product-section {
  padding: 80px 0;
  background-color: #F5F7FA;
}

/* CARD */
.product-card {
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

/* IMAGE */
.product-img {
  background-color: #f2f2f2;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.product-img img {
  height: 254px;
  object-fit: cover;
  width: 100%;
}

/* TEXT */
.product-card h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 9px;
  color: var(--title);
}




/* ===== WHY TABS SECTION ===== */
.why-section {
  padding: 100px 0;
}

/* IMAGE */
.why-image img {
  width: 100%;
  border-radius: 24px;
  display: block;
  transition: opacity 0.3s ease;
}

/* TABS */
.why-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-tab {
  background: #F5F7FA;
  border: none;
  padding: 16px;
  border-radius: 10px;
  text-align: left;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.why-tab:hover {
  background: #e9ecf6;
}

.why-tab.active {
  background: var(--blue);
  color: var(--white);
  font-weight: 500;
}




/* ===== APPLICATIONS SECTION ===== */
.applications-section {
  padding: 80px 0;
  background-color: #F5F7FA;
}

/* CARD */
.application-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  /*max-width: 378px;*/
  width: 100%;
}

/* ICON */
.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.app-icon img {
  width: 46px;
  height: 46px;
}

/* TEXT */
.application-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 9px;
  color: var(--title);
}




/* ===== MANUFACTURING SECTION ===== */
.manufacturing-section {
  background: var(--white);
}

/* IMAGE */
.manufacturing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CONTENT */
.manufacturing-content {
  padding: 80px 100px 80px 30px;
  max-width: 726px;
}

/* DIVIDER */
.manufacturing-content hr {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
  margin: 40px 0px 20px 0px;
}

/* SUB TITLE */
.manufacturing-content h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* LIST */
.manufacturing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.manufacturing-list li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 9px;
  line-height: 120%;
}

.manufacturing-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 18px;
}

/* ===== Our PVC Edge Band Collections ===== */
.pvc_items {
  padding: 30px;
  border-radius: 20px;
}

/* ===== Technical Specifications ===== */
.tech_wrapper .tech_block {
  background: #FFFFFF;
  padding: 30px;
  border-radius: 20px;
}

.tech_wrapper .tech_block h4 {
  color: #1A1A18;
  margin-bottom: 16px;
}

.tech_wrapper .tech_block .manufacturing-list.flex_ul {
  display: flex;
  flex-flow: wrap;
  margin-bottom: 5px;
  gap: 0 10px;
}

/* ===== Performance Features ===== */
.py-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.bg-F5F7FA {
  background: var(--bg-light);
}

.perform_features {
  padding: 100px 0px;
}

.perform_features .perform_item {
  background: #F5F7FA;
  padding: 30px;
  border-radius: 20px;
}

.perform_features .perform_item h4 {
  color: var(--blue);
  margin-bottom: 16px;
}

.perform_features .perform_item ul,
.perform_features .perform_item ul li:last-child {
  margin-bottom: 0px;
}


/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 80px 0;
  background: #F5F7FA;
}

/* ARROWS */
.reviews-arrows button {
  width: 50px;
  height: 50px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 20px;
  cursor: pointer;
}

/* slick core fix */
.reviews-slider .slick-track {
  display: flex !important;
}

.review-slide {
  height: auto;
  display: flex;
}

/* spacing */
.review-slide {
  padding: 0 15px;
}

.reviews-slider {
  margin: 0 -15px;
}

/* card */
.review-card {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote {
  width: 27px;
  height: 23px;
  ;
}

/* USER */
.review-user img {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user strong {
  display: block;
  font-size: 22px;
  font-weight: 600;
}




/* ===== PARTNER SECTION ===== */
.partner-section {
  padding: 100px 0;
  background: var(--white);
}

/* INFO BOX */
.partner-box {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 20px;
}

.partner-box hr {
  border: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
  height: 1px;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-tags span {
  background: #F5F7FA;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

/* ROW */
.partner-row {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 500;
}

.partner-row-description {
  display: flex;
  align-items: center;
  gap: 7px;
}

.partner-row-description img {
  width: 22px;
  height: 22px;
}

/* FORM */
.partner-form {
  background: #F5F7FA;
  border-radius: 30px;
  padding: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.partner-form h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--title);
}

.partner-form hr {
  border: none;
  background-color: #0000001a;
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 20px 0px 40px 0px;
  height: 1px;
}

.form-control {
  height: 55px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
}

textarea.form-control {
  height: auto;
  min-height: 120px;
  resize: none;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--blue);
}

.form-field label {
  font-size: 14px;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.50);
  display: block;
}

.form-field input,
.form-field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 120%;
}

.form-field input {
  height: 55px;
}

.form-field textarea {
  min-height: 82px;
  resize: none;
}



/* ===== Last SECTION ===== */
.footer-bg-wrap {
  position: relative;

}

/* Background Image */
.footer-bg {
  position: absolute;
  left: 0;
  bottom: 55px;
  height: 810px;
  width: 100%;
  background-image: url(../Images/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  z-index: -1;
}

/* Ensure content stays above bg */
.footer-bg-wrap .container {
  position: relative;
  z-index: 1;

}



/* ===== CTA SECTION ===== */
.cta-section {
  background: transparent;
}

/* CTA BOX */
.cta-box {
  padding: 60px 40px;
  border-radius: 20px;
  background: linear-gradient(180deg, #06142E 0%, var(--blue) 100%);
  color: #fff;
}

/* DESCRIPTION */
.cta-desc {
  font-size: 16px;
  color: #fff;
  max-width: 695px;
  margin: 0 auto 30px;
  line-height: 120%;
}

/* BUTTON */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-cta:hover {
  background: var(--white);
  color: var(--blue);
}


/* ===== GALLERY SECTION ===== */
.gallery_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.gallery_item {
  margin: 0;
  height: 300px;
  flex-grow: 1;
  overflow: hidden;
}

.gallery_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .gallery_item {
    height: 200px;
    flex-basis: 45%;
  }
}

/* ===== FOOTER WRAPPER ===== */

.footer-wrapper {
  background-image: url("../Images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* TOP NAV */
.footer-top {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* NAV */
.footer-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
}

.footer-nav a.active {
  color: var(--blue);
}

/* MAP */
.footer-map {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}

/* LISTS */
.footer-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 10px;
}

.border-left {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 20px;
}

.divider-vertical {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
}

.footer-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 16px;
  color: #333;
  margin-bottom: 0px;
}

.footer-list li {
  margin-bottom: 10px;
}

.footer-list li span {
  font-weight: 500;
}

/* CONTACT */
.footer-contact-box {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 20px;


}

.footer-contact-item {
  background: #fff;
  padding: 10px 16px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 16px;
  color: #333;
  text-decoration-line: none;
}

.footer-contact-item img {
  width: 22px;
  height: 22px;
}

/* BOTTOM */
.footer-bottom {
  background: var(--blue);
  color: #fff;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}







/* ===== About page ===== */
/* ===== VISION SECTION ===== */
.vision-section {
  position: relative;
  min-height: 420px;
  /* adjust if needed */
  display: flex;
  align-items: center;

  background-image: url("../Images/about/vision-bg.png");
  /* target image */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
}



/* ===== MISSION SECTION ===== */
.mission-section {
  padding: 100px 0;
  background-color: var(--white);
}

/* IMAGE */
.mission-image img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* LIST */
.mission-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.mission-list li {
  position: relative;
  padding-left: 18px;
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 9px;
}

.mission-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 18px;
}

.mission-section h4 {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  margin-bottom: 10px;
}


/* ===== QA SECTION ===== */
.qa-section {
  padding: 100px 0;
  background-color: #F5F7FA;
}

/* CARD */
.qa-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.qa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */
.qa-card img {
  height: auto;
  margin-bottom: 20px;
}

.Sustainability-subheading {
  font-size: 22px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 20px;
}


/* ===== About page ===== */

/* ===== QWN section ===== */
.product-content {
  max-width: 590px;
}


/* ===== PVC section ===== */
.pvc-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.pvc-section hr {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
  margin: 10px 0;
}

.pvc-section h4 {
  font-size: 22px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 10px;
}

.qa-section h4 {
  font-size: 22px;
  color: var(--blue);
  font-weight: 500;
  margin-bottom: 10px;
}

.tag-wrap {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-txt {
  padding: 4px 6px;
  background-color: #F5F7FA;
  border-radius: 9px;
  color: var(--dark)
}