/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

:root {
  --primary: #fdbe33;
  --secondary: #040505;
  --light: #f5f5f5;
  --dark: #e9bc51;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  color: #212020;
  overflow-x: hidden;
  z-index: 0;
  font-family: "Arvo", serif;
  font-weight: 400;
  font-style: normal;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/* Tablet */
@media (max-width: 992px) {
  .simple-heading {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .simple-heading {
    font-size: 22px;
  }
}

/* page header */
.pm-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  background: #f6eded;
  color: #333;
  padding: 12px 5%;
  z-index: 5;
  position: relative;
}

.pm-breadcrumb a {
  color: #321301;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.pm-breadcrumb a:hover {
  color: #000;
}

.pm-breadcrumb span {
  margin: 0 6px;
  color: #e9bc51;
}

.pm-breadcrumb img {
  margin-right: 6px;
  vertical-align: middle;
}

.pm-about-header {
  position: relative;
  background: url("../img/pageheader.avif") center/cover no-repeat;
  height: 40vh;
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

.pm-about-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.pm-about-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.pm-about-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.pm-about-content h1::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: #e9bc51;
  border-radius: 3px;
}

.pm-about-content p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #f0f0f0;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .pm-about-header {
    height: 35vh;
  }

  .pm-about-content h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .pm-about-header {
    height: 30vh;
  }

  .pm-about-content h1 {
    font-size: 1.7rem;
  }

  .pm-about-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .pm-about-header {
    height: 28vh;
  }

  .pm-about-content h1 {
    font-size: 1.4rem;
  }

  .pm-about-content p {
    font-size: 0.95rem;
  }
}

/* navbar */
:root {
  --primary: #e9bc51;
  --dark: #ffffff;
  --bg: #321301;
}
html, body {
    overflow-x: hidden;
}

.navbar {
    background: var(--bg);
    z-index: 1050;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #eb8585;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    background-size: 60% 60%;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B4513'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B4513'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.navbar-brand img {
  max-height: 59px;
  height: 100px;
}

.navbar-toggler {
  background: var(--primary);
}

.nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  letter-spacing: .4px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  min-width: 360px;
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 18px;
  white-space: normal;
}

.dropdown-item:hover,
.dropdown-item.active {
  background: var(--primary);
  color: #000;
  font-weight: 600;
}


@media (min-width: 992px) {

  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu>.dropdown-menu {
    top: 0;
    right: 100%;
    display: none;
    margin-left: 0;
  }

  .dropdown-submenu:hover>.dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {

  .navbar-collapse {
    background: #fff;
    padding: 15px;
  }

  .nav-link {
    color: #000 !important;
  }

  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    padding-left: 12px;
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .dropdown-submenu>.dropdown-menu {
    padding-left: 15px;
  }

  .dropdown-toggle::after {
    float: right;
    margin-top: 7px;
  }
}

/* crousel */


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #e9bc51;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);

}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;

  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #fff;
  margin: 4px 10px;
}

.section-title p {
  color: #fff;
  margin: 0;
  font-size: 36px;
  font-weight: 600;
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;

}

.abt-title {
  font-size: 28px;
  font-weight: 600;
  color: #040505;
  text-align: center;

  margin: 20px 0;
}

@media (max-width: 991.98px) {
  .abt-title {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .abt-title {
    font-size: 20px;
    margin: 15px 10px;
  }
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: #000;
  margin-right: 0.5rem;

  font-size: 1.25rem;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-icon {
  width: 60px;
  height: 60px;
  background: #edc55f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}

.why-box {
  display: flex;
  align-items: start;
  gap: 20px;
}

/* our produts */
.product-section {
  position: relative;
  color: #0c0b0b;
  background: linear-gradient(135deg,
      rgba(231, 224, 228, 0.35),
      rgba(247, 245, 247, 0.35)),
    url("../img/bg.jpg") center / cover no-repeat;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #e9bc51;
  color: #020202;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  margin: 5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-link:hover {
  background-color: #e9bc51;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-link:focus,
.btn-link:focus-visible {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(89, 62, 62, 0.45);
}

.btn-link:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .btn-link {
    transition: none;
  }
}

.product-content {
  position: relative;
  z-index: 2;
}

.section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.section-heading h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.heading-bar {
  width: 80px;
  height: 3px;
  background: #909090;
  margin: 18px auto;
}

.section-heading p {
  font-size: 14px;

  color: #e8f4fb;
}

.product-grid {
  background: #efe7c6;
  padding: 25px;
}

.product-item {
  position: relative;
  border: 1px solid #e1e1e1;
  background: #f7f7f7;
  height: 100%;
  text-align: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item img {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: 15px;
  transition: transform 0.4s ease;
}

.product-item:hover img {
  transform: scale(1.05);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: #909090;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  transition: 0.4s ease;
  text-align: center;
}

.product-item:hover .product-overlay {
  opacity: 1;
}

.product-overlay h5 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-overlay a {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.product-item:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.product-title {
  font-size: 12px;
  font-weight: 700;
  padding: 10px 8px;
  background: #e9ecef;
  color: #222;
  text-transform: uppercase;
}

/* Mobile – show only ONE product per row */
@media (max-width: 575px) {
  .product-grid .row>[class*="col-"] {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.diagram-box {
  background: #e9bc51;
  color: #000;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
}

/* infrastructure */
.fs-section {
  padding: 60px 15px;
}

.fs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.fs-wrapper {
  text-align: center;
}

.fs-title {
  font-size: 30px;
  font-weight: 600;
  color: #040505;
  margin-bottom: 40px;
}

.fs-row {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.fs-box {
  background-color: #fdbe33;
  color: #040505;
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 6px;
  font-size: 18px;
}

.fs-content {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 8px;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.fs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.fs-list li {
  font-size: 16px;
  color: #040505;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.fs-list i {
  color: #fdbe33;
  font-size: 18px;
  margin-top: 2px;
}

/* Tablet */
@media (max-width: 991.98px) {
  .fs-title {
    font-size: 26px;
  }

  .fs-content {
    padding: 25px;
  }

  .fs-box {
    font-size: 16px;
    padding: 14px 24px;
  }

  .fs-list li {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 575.98px) {
  .fs-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .fs-row {
    margin-bottom: 20px;
  }

  .fs-content {
    padding: 20px 18px;
  }

  .fs-list li {
    font-size: 14px;
    gap: 8px;
  }

  .fs-list i {
    font-size: 16px;
  }

  .fs-box {
    padding: 12px 18px;
    font-size: 15px;
  }
}


/*--------------------------------------------------------------
# About Section - Responsive
--------------------------------------------------------------*/
.lnk-about-wrapper {
  padding: 80px 20px;
  background: #f7f7f7;
}

.lnk-about-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

/* IMAGE AREA */
.lnk-about-images {
  position: relative;
  flex: 1;
}

.lnk-about-images .main-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.lnk-about-images .overlay-img {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 45%;
  border-radius: 12px;
  border: 6px solid #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

/* CONTENT AREA */
.lnk-about-content {
  flex: 1;
}

.lnk-subtitle {
  color: #edc55f;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.lnk-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: #1f1f1f;
}

.lnk-about-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 14px;
}

.lnk-about-list {
  padding-left: 18px;
  margin: 18px 0;
}

.lnk-about-list li {
  font-size: 15px;
  margin-bottom: 8px;
  position: relative;
}

.lnk-about-list li::marker {
  color: #edc55f;
}

.lnk-highlight {
  font-weight: 600;
  color: #333;
  margin-top: 18px;
}

.lnk-about-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 14px 34px;
  background: #edc55f;
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.lnk-about-btn:hover {
  background: #edc55f;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(198, 40, 40, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .lnk-about-inner {
    flex-direction: column;
  }

  .lnk-about-images .overlay-img {
    right: 0;
    bottom: -30px;
  }

  .lnk-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .lnk-about-images .overlay-img {
    display: none;
  }
}

/* ===== Mission Vision Section ===== */
.mvv-section {
  padding: 80px 20px;
}

.mvv-container {
  max-width: 1200px;
  margin: auto;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Arrow between boxes */
.mvv-grid::before,
.mvv-grid::after {
  content: "➜";
  position: absolute;
  top: 40%;
  font-size: 40px;
  color: #f1c423;
}

.mvv-grid::before {
  left: 31%;
}

.mvv-grid::after {
  left: 65%;
}

/* Card */
.mvv-card {
  background: #fff;
  padding: 35px 30px 40px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

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

/* Number Badge */
.mvv-badge {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.badge-mission {
  background: #edc55f;
}

.badge-vision {
  background: #3498db;
}

.badge-values {
  background: #e84393;
}

/* Headings */
.mvv-card h3 {
  margin-bottom: 15px;
  font-size: 25px;
  color: #030303;
  font-weight: 800;
  text-transform: uppercase;
}

/* Core Values List */
.mvv-card ul {
  padding-left: 18px;
  margin: 0;
}

.mvv-card ul li {
  font-size: 14.5px;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .mvv-grid {
    grid-template-columns: 1fr;
  }

  .mvv-grid::before,
  .mvv-grid::after {
    display: none;
  }
}

/* ================= CONTACT SECTION ================= */

.lnk-contact-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.lnk-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 15px;
}

.lnk-section-header p {
  color: #edc55f;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.lnk-section-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* GRID */

.lnk-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.lnk-col-left,
.lnk-col-right {
  flex: 1;
  min-width: 400px;
}

/* CONTACT INFO */

.lnk-contact-info {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lnk-info-item {
  display: flex;
  margin-bottom: 30px;
}

.lnk-info-item i {
  font-size: 32px;
  color: #edc55f;
  margin-right: 18px;
  margin-top: 5px;
}

.lnk-info-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.lnk-info-text p {
  font-size: 15px;
  color: #555;
}

/* CONTACT FORM */

.lnk-contact-form {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.lnk-input-field {
  width: 100%;
  height: 48px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px 14px;
  font-size: 15px;
}

.lnk-textarea-field {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 12px 14px;
  font-size: 15px;
  resize: none;
  margin-bottom: 15px;
}

.lnk-input-field:focus,
.lnk-textarea-field:focus {
  outline: none;
  border-color: #e9bc51;
}

.lnk-submit-btn {
  width: 100%;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  background: #e9bc51;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.lnk-submit-btn:hover {
  background: #e9bc51;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .lnk-contact-section {
    padding: 50px 0;
  }

  .lnk-section-header h2 {
    font-size: 26px;
  }

  .lnk-contact-info,
  .lnk-contact-form {
    padding: 25px;
  }
}
    .certificate-img {
        border: 3px solid #c9a23f; /* optional border */
        box-shadow: 0 10px 30px rgba(0,0,0,0.2); /* optional shadow */
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
/* faq */
.faq-img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.accordion-button {
  font-size: 17px;
  font-weight: 600;
  color: #e9bc51;
}

.accordion-body {
  font-size: 15px;
  color: #555;
}

.accordion-button:not(.collapsed) {
  color: #ede9e7;
  background-color: #555;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-img {
    margin-bottom: 20px;
  }

  .accordion-button {
    font-size: 16px;
  }
}

/* About Us Home */
.welcome-section {
  padding: 70px 0;
  background: linear-gradient(#f2f2f2 1px, transparent 1px),
    linear-gradient(90deg, #f2f2f2 1px, transparent 1px);
  background-size: 40px 40px;
  background-color: #fff;
}

.main-title {
  text-align: center;
  margin-bottom: 55px;
}

.main-title h2:first-child {
  font-size: 34px;
  font-weight: 700;
  color: #e9bc51;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-title h2:last-child {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #030303;
  text-transform: uppercase;
}

.title-bar {
  width: 45px;
  height: 3px;
  background: #909090;
  margin: 15px auto 0;
}

/* Card Boxes */
.content-box {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 30px;
  height: 100%;
}

.content-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #0a0909;
  text-transform: uppercase;
}

/* CMD Message */
.cmd-text {
  position: relative;
  padding-right: 20px;
}

.cmd-text p {
  font-size: 14px;

  color: #090808;
}

/* About Section */
.about-text {
  font-size: 14px;

  color: #080707;
  text-align: justify;
}

/* Owner Image & Name */
.video-box img.owner-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  border: 3px solid #e9bc51;
}

.video-box .owner-name {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #0a0909;
  text-align: center;
}

/* Video Box Image Full Width */
.video-box img {
  width: 100%;
  border-radius: 3px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .main-title h2:first-child {
    font-size: 28px;
  }

  .main-title h2:last-child {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .video-box img.owner-img {
    width: 120px;
    height: 120px;
  }

  .video-box .owner-name {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .video-box img.owner-img {
    width: 100px;
    height: 100px;
  }

  .video-box .owner-name {
    font-size: 13px;
  }

  .content-box {
    padding: 20px;
  }
}

/* cataglog */
.download-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

.download-btn {
  background: linear-gradient(180deg, #321301, #321301);
  color: #fff;
  text-decoration: none;
  padding: 18px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  color: #e9bc51;
}

/* Icon box */
.download-btn .icon {
  width: 34px;
  height: 34px;
  background: #fff;
  color: #321301;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
}


/* products pages content */
.heading-primary {
  color: #321301;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
}

.heading-primary::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e9bc51, #b48a2c);
  border-radius: 2px;
}

/* =========================
   Section / Product Heading
   ========================= */
.heading-secondary {
  color: #321301;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  padding-left: 12px;
}

.heading-secondary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background-color: #e9bc51;
  border-radius: 2px;
}

/* =========================
   Responsive Styles
   ========================= */
@media (max-width: 768px) {
  .heading-primary {
    font-size: 24px;
    letter-spacing: 0.8px;
  }

  .heading-secondary {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .heading-primary {
    font-size: 21px;
  }

  .heading-secondary {
    font-size: 19px;
  }
}

.main-products {
  max-width: 1319px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 10px;
}


.main-products p {
  font-size: 16px;
  line-height: 1.7;
  color: #0b0a0a;
  margin-bottom: 20px;
}

.main-products img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: 500px;
  border-radius: 8px;
  background-color: #d6cfcf;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-products {
    padding: 15px;
  }

  .main-products p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .main-products p {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .heading-style {
    font-size: 1.75rem;
  }

  .intro-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  .heading-style {
    font-size: 1.5rem;
  }

  .intro-text {
    font-size: 0.9rem;
    text-align: left;
  }
}

/* Product card */
.product-card {
  background: #fff;
  border: 2px solid #e9bc51;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* Card content layout */
.product-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.product-content .text {
  flex: 1 1 60%;
  padding: 20px;
}

.product-content .image {
  flex: 1 1 40%;
  padding: 20px;
  text-align: center;
  object-fit: contain;
}

.product-img {
  width: 100%;
  max-width: 300px;
  height: 400px;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}

.product-img img {
  border: 2px solid #e9bc51;
}

/* Specs list */
.product-specs {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.product-specs li {
  font-size: 0.95rem;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

.product-specs li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .product-content {
    flex-direction: column;
  }

  .product-content .image {
    order: -1;
  }
}


/* privacy policy */
.privacy-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 30px;
  background: #f9fbfd;
  border-radius: 12px;
  border: 1px solid #e1e8f0;
  line-height: 1.8;
  color: #060505;
}

/* Headings style (same for h2–h6) */
.privacy-section h2,
.privacy-section h3,
.privacy-section h4,
.privacy-section h5,
.privacy-section h6 {
  color: #321301;
  font-weight: 700;
  margin: 25px 0 15px;
  padding-bottom: 6px;
}

/* Paragraphs */
.privacy-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Lists */
.privacy-section ul {
  margin: 12px 0 20px;
  padding-left: 22px;
}

.privacy-section ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .privacy-section {
    padding: 25px 20px;
    margin: 20px;
  }
}

.sitemap-section {
  padding: 60px 0;
}

.sitemap-title {
  color: #321301;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.tree ul {
  list-style: none;
  padding-left: 1.2rem;
  position: relative;
}

.tree ul::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: #ccc;
}

.tree li {
  margin: 8px 0;
  padding-left: 1rem;
  position: relative;
}

.tree li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 12px;
  height: 1px;
  background: #ccc;
}

.tree a {
  text-decoration: none;
  color: #321301;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: 0.2s;
}

.tree a:hover {
  text-decoration: underline;
  transform: translateX(3px);
}

.tree i {
  margin-right: 8px;
  color: #e9bc51;
}

/*** Footer Start ***/
.footer {
  background: #0b0b0b url("../img/footerbg.avif") no-repeat center/cover;
  position: relative;
  color: #ddd;
  padding: 60px 0 30px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.85),
      rgba(0, 0, 0, 0.95));
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 15px;
  border-bottom: 2px solid #e9bc51;
  display: inline-block;
  padding-bottom: 4px;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
}

.footer a i {
  color: #e9bc51;
  margin-right: 8px;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.footer a:hover i {
  transform: rotate(15deg) scale(1.2);
}

.footer a:hover {
  color: #e9bc51;
  transform: translateX(5px);
}

/* Hover underline animation */
.footer a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #e9bc51;
  transition: width 0.3s ease;
}

.footer a:hover::after {
  width: 100%;
}

/* Footer social section */
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #e9bc51;
  color: #e9bc51;
  border-radius: 50%;
  font-size: 16px;
  background: transparent;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #e9bc51;
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(234, 48, 58, 0.4);
}

/* Contact icons */
.footer .contact-info i {
  color: #e9bc51;
  margin-right: 10px;
}

/* Social media icon group */
.social-media-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.social-media-icons .social-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid #e9bc51;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #e9bc51;
  font-size: 15px;
  transition: all 0.3s ease;
}

.social-media-icons .social-icon:hover {
  background: #e9bc51;
  color: #fff;
  transform: translateY(-3px);
}

/* =============================
   RESPONSIVE DESIGN (JUSTIFIED)
   ============================= */
@media (max-width: 991px) {
  .footer {
    padding: 40px 15px;
    text-align: left;
  }

  .footer .container {
    text-align: left;
  }

  .footer h5 {
    display: block;
    margin-bottom: 15px;
    text-align: left;
  }

  .footer p,
  .footer a {
    display: block;
    margin: 5px 0;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 15px;
  }

  .footer-social a {
    margin: 5px 5px 0 0;
  }

  .social-media-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 30px 10px 20px;
  }

  .footer h5 {
    font-size: 14px;
  }

  .footer p,
  .footer a {
    font-size: 13px;
  }

  .footer-social a {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.footer-bottom a {
  color: #e9bc51;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding-top: 15px;
  font-size: 13px;
  color: #060606;
  text-align: left;
}

/* Fade-up animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

.footer .col {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.footer .col:nth-child(1) {
  animation-delay: 0.2s;
}

.footer .col:nth-child(2) {
  animation-delay: 0.4s;
}

.footer .col:nth-child(3) {
  animation-delay: 0.6s;
}

.footer .col:nth-child(4) {
  animation-delay: 0.8s;
}

.footer .col:nth-child(5) {
  animation-delay: 1s;
}