@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #225c8c;
  --secondary-color: #bfb506;
  --text-color: #ffffff;
  --text-secondary-color: #000;
  --background-color: #f5f5f5;
}

body {
  margin: 0;
  font-family: Raleway, sans-serif;
}
a {
  text-decoration: none;
}
ul,
ol {
  list-style-type: none;
}

/* -----------------------------------------------------------------------
HEADER
----------------------------------------------------------------------- */
header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  color: white;
}
.top-header {
  background-color: #c0b131;
}
.bottom-header {
  background-color: #c0b131;
      border-top: 1px solid #000;
}
/* header.scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
header.scrolled .main_menu ul li a {
  color: black;
} */

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  z-index: 999;
}
.logo img {
  width: 100px;
}
.logo a {
  position: absolute;
  top: 10px;
}

.top-nav {
  display: flex;
  flex: 2;
  justify-content: right;
}

.logo a {
  font-size: 20px;
  font-weight: 700;
  color: #353535;
  text-transform: uppercase;
}

/* normal menu css */
.main_menu {
  text-align: right;
}
.main_menu ul {
  margin: 0;
  /* text-align: center; */
}
.main_menu > ul > li {
  display: inline-block;
  position: relative;
  margin: 0 -2px;
}
.main_menu ul li {
  position: relative;
}

.main_menu ul li a {
  font-size: 15px;
  color: #000;
  padding: 26px 18px;
  display: block;
  font-weight: 600;
}
.main_menu ul li a:hover {
  color: #225c8c;
}
.top-header .main_menu {
  margin-right: 20px;
}
.bottom-header .main_menu ul li a {
  padding: 17px 14px;
}
.bottom-header .main-nav {
  max-width: 1140px;
  margin: 0 auto;
}
/* Normal Dropdown menu */
.main_menu ul li ul {
  width: 200px;
  background: #fff;
  transition: 0.5s;
  box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.75);
}

.main_menu ul li ul li a {
  padding: 10px 25px;
  font-size: 15px;
}
.main_menu ul li ul li a i {
  float: right;
}

.main_menu ul li ul li ul {
  left: 100%;
  top: 0;
}

/* mega menu css */
.mega_menu_dropdown {
  position: static !important;
  /* text-align: left; */
}
.mega_menu_dropdown .mega_menu {
  text-align: left;
}
.mega_menu {
  /* left: 0;
  right: 0; */
  background: #c0b131;
  transition: 0.5s;
  /* display: flex;
  flex-wrap: wrap; */
  /* padding: 0 0 0 20px; */
}

.mega_menu_item h5 {
  color: #225c8c;
  margin-bottom: 3px;
  font-weight: 700;
  font-size: 18px;
}
.mega_menu_item .menu-flex {
  display: flex;
  gap: 50px;
  margin-top: 20px;
}
.mega_menu_item {
  width: 280px;
  padding: 20px;
}
.menu-width {
  width: 24%;
}
.mega_menu_img-width {
  width: 46%;
}
.main_menu ul li .mega_menu_item a {
  padding: 0px 0 15px 0px;
  color: #000;
  font-size: 15px;
}

.main_menu ul li .mega_menu_item a:hover {
  color: #225c8c;
}
.main_menu ul li .mega_menu_item h5:hover {
  color: #225c8c;
}
.mega_menu_item h3 {
  margin-bottom: 8px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
}
.mega_menu_item h4 {
  margin-bottom: 4px;
}
.mega_menu_item h4 a {
  color: #000;
  font-size: 17px !important;
}

.mega_menu_item img {
  width: 100%;
}

/* demo_2 css */
.mega_menu_demo_2 .mega_menu {
  left: 50%;
  transform: translateX(-50%);
  width: 1140px;
}

.mobile_btn {
  display: none;
}

/* responsive css */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    width: 960px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 940px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    width: 720px;
  }
  .mega_menu_demo_2 .mega_menu {
    width: 700px;
  }
  .main_menu ul li a {
    font-size: 15px;
    padding: 20px 16px;
  }
  .main_menu ul li ul {
    width: 150px;
  }
}
@media (min-width: 768px) {
  .main_menu ul li ul {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li .mega_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    margin-top: 50px;
  }
  .main_menu ul li:hover > ul {
    visibility: visible;
    opacity: 1;
    margin-top: 0px;
    z-index: 99;
  }
  .main_menu ul li:hover > .mega_menu {
    visibility: visible;
    opacity: 1;
    margin-top: 0;
    z-index: 99;
  }

  .mobile_btn {
    color: #000;
  }
}

@media (max-width: 767.98px) {
  .mega_menu_demo_2 .mega_menu,
  .container {
    width: 100%;
  }
  header {
    background: #fff !important;
  }
  /* 
  .main_menu ul li a {
    color: #333 !important;
  } */

  .mobile_btn {
    color: #000;
  }

  nav {
    /* padding: 15px; */
    text-align: right;
    justify-content: right;
  }
  .mobile_btn {
    cursor: pointer;
    display: block;
  }

  .main_menu {
    display: none;
    width: 100%;
  }

  .main_menu ul li {
    display: block;
  }
  .main_menu ul li a i {
    float: right;
  }
  /* .main_menu ul li a {
    border-bottom: 1px solid #ddd;
  } */
  .main_menu ul li ul {
    width: 100%;
  }
  .main_menu ul li ul li ul {
    left: 0;
    top: auto;
  }

  .mega_menu .mega_menu_item {
    width: 50%;
  }
  .main_menu ul li ul {
    display: none;
    transition: none;
  }
  .main_menu ul li .mega_menu {
    display: none;
    transition: none;
  }

  .mega_menu_demo_2 .mega_menu {
    transform: translateX(0);
  }
  .main_menu ul {
    margin: 90px 0 0;
    text-align: left;
    padding: 0;
  }
  .mega-image {
    display: none;
  }

  .mega_menu .menu-flex {
    flex-direction: column;
    gap: 10px;
  }

  .mega_menu_item {
    padding: 10px 0;
  }
}

@media (max-width: 575.98px) {
  .mega_menu .mega_menu_item {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .btn.yellow {
    display: none;
  }
}

/* ========== Column 3: Catalog Image ========== */
.mega-image {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
  height: 250px;
}

.mega-image img {
  width: 100%;
  display: block;
  /* border-radius: 8px; */
}

.catalogue-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.catalogue-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.catalogue-overlay .btn.yellow {
  background: var(--primary-color);
  color: #fff;
  padding: 6px 12px;
  font-size: 16px;
  border-radius: 50px;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  /* nav,
  .btn.yellow {
    display: none;
  }
 
  .menu-toggle {
    display: block;
  }
 
  .mega-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
 
  .mega-image {
    display: none;
  } */
}
@media (max-width: 768px) {
  /* nav {
    display: none;
  }
 
  .menu-toggle {
    display: block;
  } */
}

/* --------------------------------------------------------------------
SLIDER
-------------------------------------------------------------------- */

.slider .slide {
  height: 450px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  /* background: rgba(0, 0, 0, 0.4); */
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  color: #ecdc19;
  height: 100%;
  width: 100%;
  padding: 80px 80px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overlay .discount {
  font-size: 16px;
  margin-bottom: 20px;
  margin-top: -50px;
}

.overlay h1 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
  margin-top: 0px;
}

.buttons .btn {
  text-decoration: none;
  padding: 15px 25px;
  margin-right: 10px;
  border-radius: 25px;
  /* font-weight: bold; */
  display: inline-block;
  transition: 0.3s;
}

.btn.yellow1 {
  background: transparent;
  color: #000;
  border: 1.3px solid;
  border-radius: 25px;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
}
.btn.yellow {
  background: #225c8c;
  color: #fff;
  border: 1.3px solid;
  border-radius: 25px;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
}

.btn.yellow:hover {
  background: var(--primary-color);
  color: var(--text-color);
}

.btn.white {
  background: var(--text-color);
  color: var(--text-secondary-color);
}

/* Slick dots styling */
.slick-dots {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  list-style: none;
  display: flex !important;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.slick-dots li {
  margin: 0 5px;
}

.slick-dots button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.slick-dots .slick-active button {
  background: var(--primary-color); /* Highlight color for active dot */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .slider .slide {
    max-height: 400px;
    min-height: 250px;
  }

  .overlay {
    padding: 40px 20px;
  }

  .overlay h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .overlay .discount {
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: -30px;
  }

  .buttons .btn {
    padding: 12px 20px;
    font-size: 14px;
    margin-right: 8px;
  }
}

@media (max-width: 600px) {
  .slider .slide {
    max-height: 300px;
    min-height: 200px;
  }

  .overlay {
    padding: 20px 10px;
  }

  .overlay h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .overlay .discount {
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: -20px;
  }

  .buttons .btn {
    padding: 10px 16px;
    font-size: 12px;
    margin-right: 6px;
  }
}
/* ---------------------------------------------------------------
BEST SELLER
----------------------------------------------------------------- */

.tab-content {
  padding-top: 20px;
}

.styled-card {
  position: relative;
  background: #005e95;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 45px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.styled-card .card-header {
  background-color: #fff;
}

.product-image-wrapper {
  text-align: center;
  padding: 10px 0 10px 0;
  margin-top: -25px !important;
  border-radius: 0 0 22px 20px;
  background-color: #ffffff;
}

/* Basket button in cutout */
.basket-btn {
  position: absolute;
  top: calc(100% - 72px);
  left: 75%;
  transform: translateX(-50%);
  background: white;
  border-radius: 80%;
  border: 5px solid #225c8c;
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  font-size: 20px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4); */
  cursor: pointer;
}

.card-header {
  padding: 20px 20px 15px 20px;
  text-align: center;
  /* background-color: #eaf3ff;  */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  /* height: 140px; */
}

.card-header .brand {
  font-size: 14px;
  color: #222;
  font-weight: 500;
  margin: 0;
  text-align: left;
}

.card-header .product-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0 5px 0;
  text-align: left;
  font-family: sans-serif;
}

.card-header .subtitle {
  font-size: 14px;
  color: #9ca3af; /* Tailwind's gray-400 tone */
  margin: 0;
  text-align: left;
}

.price-add {
  margin-top: 10px;
  font-size: 18px;
}

.product-image {
  width: 200px;
  height: auto;
  transform: none; /* Removes rotation */
  border-radius: 0;
}

.card-footer {
  /* background: var(--primary-color); */
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px;
  /* padding-top: 40px; */
  padding-bottom: 15px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  color: white;
  text-align: center;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.subtitle {
  font-size: 0.7rem;
  color: #999;
}

.add-to-quote-btn {
  border: none;
  border-radius: 50%;
  padding: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

/* GRID CONTAINER */

.grid-container {
  display: grid;
  gap: 20px;
  padding: 10px 0px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.category-card {
  position: relative;
  height: 450px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* border-radius: 10px; */
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);
  z-index: 0;
}

.category-card-content {
  position: relative;
  z-index: 1;
}

.category-card h3 {
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: bold;
}

.category-card button {
  background-color: #ffcc00;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
}

@media (min-width: 768px) {
  .first-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .second-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Section Styles */

.section-heading {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.image-side img {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
}

.text-side {
  max-width: 500px;
}

.text-side h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.text-side p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.text-side .btn.yellow {
  /* background-color: var(--primary-color); */
  padding: 0.55rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  font-weight: bold;
}

/* Responsive Layout */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .text-side {
    max-width: 100%;
  }

  .text-side .btn.yellow {
    margin: 0 auto;
  }
}
/* 
-------------------------------------------------------------
ABOUT US PAGE
-------------------------------------------------------------- */

/* BANNER CSS */

/* Banner */
.about-banner {
  position: relative;
  height: 60vh;
  background: url("../images/about-image.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.banner-content {
  color: white;
  text-align: start;
  max-width: 800px;
}

.banner-content h1 {
  font-size: 40px;
  margin-bottom: 1rem;

  font-family: "Raleway", sans-serif;
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 50vh;
  }

  .banner-content h1 {
    font-size: 1.5rem;
  }

  .banner-content p {
    font-size: 0.9rem;
  }
}

/* WHO WE ARE */

.info-section {
  padding: 60px 0px;
}

/* Who we are */
.who-we-are {
  padding: 60px 20px;
  background-color: #fff;
  font-family: "Raleway", sans-serif;
}

.who-container {
  max-width: 1200px;
  margin: 0 auto;
}

.content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.text {
  flex: 1;
  min-width: 300px;
}

.highlight {
  color: #b6a500;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  display: inline-block;
  /* margin-bottom: 10px; */
}

.text h2 {
  font-size: 32px;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.text p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 0;
}

.stat p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

.image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image img {
  max-width: 100%;
  height: auto;
  /* border-radius: 8px; */
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
  }

  .stats {
    justify-content: center;
  }
}

/* MISION VISION */

/* Vision Mission */
.vision-mission-wrapper {
  padding: 60px 0;
  background: #00629b;
  margin-bottom: 60px;
}
.section-title {
  text-align: center;
}
.section-title span {
  /* background: #f7f3c2; */
  padding: 5px 15px;
  font-size: 32px;
  font-weight: bold;
  display: inline-block;
  color: var(--primary-color);
}

.vision-mission-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.box {
  flex: 1 1 300px;
  /* max-width: 200px; */
  padding: 20px;
  background-color: #00629b;
  border-radius: 10px;
}
.box .box_div {
  display: flex;
  gap: 30px;
  align-items: center;
}
.box img {
  width: 70px;
  height: 70px;
  /* margin-bottom: -15px; */
}

.box h3 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  margin-top: 20px;
}

.box p {
  color: #fff;
  line-height: 1.6;
  font-size: 16px;
  text-align: left;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .vision-mission-grid {
    flex-direction: column;
    align-items: center;
  }

  .box {
    max-width: 100%;
  }
}

/* CORE VALUES */

/* core Values */

.core-values-wrapper {
  /* background: #1a1a1a; */

  padding: 60px 20px;
  margin-top: -60px !important;
}

.core-values-grid {
  display: flex;

  justify-content: space-between;

  flex-wrap: wrap;

  gap: 30px;

  max-width: 1200px;

  margin: auto;
}

.value-box {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  flex: 1 1 300px;

  max-width: 350px;
}

.value-box img {
  width: 40px;

  height: 40px;

  flex-shrink: 0;
}

.value-box h3 {
  font-size: 16px;

  margin: 0 0 10px;

  color: var(--primary-color);
}

.value-box p {
  font-size: 16px;

  color: #555555;

  margin: 0;
}

@media (max-width: 768px) {
  .core-values-grid {
    flex-direction: column;

    align-items: center;
  }

  .value-box {
    max-width: 100%;
  }
}

/* -----------------------------------------------------------------------
CONTACT PAGE
----------------------------------------------------------------------- */
.contact-banner {
  position: relative;
  height: 60vh;
  background: url("../images/about-image.jpg") center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.banner-content {
  color: white;
  text-align: start;
  max-width: 1200px;
}

.banner-content h1 {
  font-size: 40px;
  margin-bottom: 1rem;

  font-family: "Raleway", sans-serif;
}

/* Contact Strip */
.contact-info-section {
  padding: 60px 20px;
  background-color: #fff;
  font-family: Arial, sans-serif;
  color: #111;
}

.contact-info-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  /* flex: 1 1 300px; */
  max-width: 350px;
}

.icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.info-box h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: bold;
}

.info-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #444;
}

@media (max-width: 768px) {
  .contact-info-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-box {
    max-width: 100%;
  }
}

/* Map */
.map-section {
  padding: 40px 20px;
}

.map-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 300px;
}

@media (max-width: 768px) {
  .map-container iframe {
    min-height: 250px;
  }
}

/* Contact Form */
.contact-form-section {
  padding: 60px 20px;
  /* background-color: #f5f5f5; */
  display: flex;
  justify-content: center;
}

.form-title {
  font-size: 28px;
  /* margin-bottom: 30px; */
  margin-top: 60px;
  text-align: center;
  color: #222;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.form-row input {
  flex: 1 1 30%;
  padding: 12px 16px;
  border-radius: 25px;
  border: 1px solid #ccc;
  font-size: 16px;
  background: white;
}

textarea {
  width: 100%;
  padding: 16px;
  border-radius: 15px;
  border: 1px solid #ccc;
  font-size: 16px;
  resize: vertical;
}

/* button {
  align-self: center;
  background-color: #ffc107;
  color: #000;
  padding: 12px 32px;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}
 
button:hover {
  background-color: #e0a800;
}
  */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-title {
    font-size: 24px;
    text-align: left;
  }

  .form-row input {
    width: 100%;
  }

  button {
    width: 100%;
  }
}

/* -----------------------------------------------------------------
FOOTER 
---------------------------------------------------------------- */
.footer {
  background-color: #c0b131;
  color: #000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 0;
  /* margin-top: 30px; */
}
.footer .container-fuild {
  max-width: 1140px;
  margin: 0 auto;
}
.footer p {
  font-size: 14px;
}
.footer-section {
  flex: 1 1 250px;
  margin: 10px;
}

.footer-logo img {
  max-width: 100px;
  margin-bottom: 15px;
}

.footer-nav h4,
.footer-contact h4,
.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.footer-nav li {
  /* display: inline-block; */
  /* margin-right: 10px; */
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #000;
}

.footer-contact a:hover {
  color: #fff !important;
  text-decoration: underline;
}

.footer-contact i {
  margin-right: 10px;
  color: #000;
}

.footer-contact p {
  margin-right: 10px;
  color: #000;
}

.footer-contact a {
  color: #000 !important;
  text-decoration: none;
}

.footer-contact p {
  text-align: justify;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #ccc;
}

.footer-social a:hover {
  color: #3af;
}

/* Bottom strip */
.footer-bottom-strip {
  background-color: #ab9c22;
  color: #000;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom-strip .left-text,
.footer-bottom-strip .right-text {
  margin: 5px 0;
}
.footer-bottom-strip .right-text a {
  color: #000;
  font-weight: 500;
}

.footer-bottom-strip .right-text a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    text-align: left;
    padding: 40px 20px;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-bottom-strip {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-strip .left-text,
  .footer-bottom-strip .right-text {
    margin: 5px 0;
  }
  .single-cta {
    margin-bottom: 25px;
  }
  .subbanner-heading {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .cms__btn a {
    font-size: 13px !important;
  }
}

/* -----------------------------------------------------------
QUOTE PAGE
----------------------------------------------------------- */

/* Each quote item */
.quote-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
  /* margin-bottom: 20px; */
}

/* Left part of the item: image and name */
.quote-item-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Product image */
.quote-item-left img {
  width: 100px;
  height: auto;
  object-fit: contain;
}

/* Product name */
.quote-item-left h4 {
  font-size: 16px;
  /* font-weight: ; */
  margin: 0;
  font-family: "Raleway", sans-serif;
  color: var(--primary-color);
}

/* Remove (×) icon */
.remove-item {
  font-size: 32px;
  color: #888;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}

.remove-item:hover {
  color: #e53935;
}

/* Sticky form container */
.sticky-form {
  position: sticky;
  top: 30px; /* Distance from top when stuck */
  /* background-color: #f8f9fa; */
  padding: 30px;
  border-radius: 8px;
  /* box-shadow: 0 0 10px rgba(0,0,0,0.05); */
  z-index: 10;
}

/* footer cta */

.footer-cta {
  background: #f7f6f6;
  /* padding: 20px 0; */
  /*border-top: 1px solid #bfc1c5;*/
}
.single-cta {
  display: flex;
  align-items: center;
}
.borderl {
  /*border-right: 1px solid #bfc1c5;*/

  padding: 36px 10px;
}
.bordert {
  padding: 36px 10px;
}
.single-cta img {
  color: #3d4856;
  width: 50px;
}
.cta-text {
  padding-left: 15px;
  display: inline-block;
}
.cta-text h4 {
  color: #00629b;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-text span {
  color: #757575;
  font-size: 15px;
}
.footer-content {
  position: relative;
  z-index: 2;
}

/* PRODUCT CATEGORY */
.sub-banner {
  position: relative;
}
.sub-banner .banner-inner {
  overflow: hidden;
  position: relative;
}
.sub-banner-banner,
.banner-inner a {
  display: flex;
}
.subbanner-description {
  position: absolute;
  top: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.subbanner-description.subbanner__content--right {
  left: 5.3%;
  right: auto;
}
.subbanner-heading {
  font-size: 30px;
  line-height: 40px;
  margin-block: 18px 22px;
  font-weight: 700;
  text-align: left;
  color: #fff;
}
.sub-banner img {
  max-width: 100%;
}
.text-button {
  text-align: left;
}
.cms__btn a {
  border: 0;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  background-color: #00619a;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
}
/* .sub-banner .banner-inner img {
  transition: transform 0.5s ease;
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
  position: relative;
} */

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* dark overlay */
  z-index: 1;
  pointer-events: none; /* allow clicks to pass through */
}

.above-overlay {
  position: relative;
  z-index: 2;
}

/* .sub-banner:hover .banner-inner img {
  -webkit-transform: scale(1.07);
  -ms-transform: scale(1.07);
  transform: scale(1.07);
} */

/* about */

.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}

.sec-title .title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #0068a3;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom: 18px;
}

.sec-title h2:before {
  position: absolute;
  content: "";
  left: 0px;
  bottom: 0px;
  width: 50px;
  height: 3px;
  background-color: #d1d2d6;
}

.sec-title .text {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.text-center h2:before {
  left: 50%;
  margin-left: -25px;
}

.list-style-one {
  position: relative;
}

.list-style-one li {
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #222222;
  font-weight: 400;
  padding-left: 35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  font-size: 18px;
  padding: 0px;
  color: #ff2222;
  font-weight: 600;
  -moz-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1.6;
  font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover {
  color: #44bce2;
}

.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #ff2222;
}

.btn-style-one:hover {
  background-color: #001e57;
  color: #ffffff;
}
.about-section {
  position: relative;
  padding: 120px 0 0 0;
}

.about-section .sec-title {
  margin-bottom: 20px;
}

.about-section .content-column {
  position: relative;
  margin-bottom: 50px;
}

.about-section .content-column .inner-column {
  position: relative;
  padding-left: 10px;
}

.about-section .text {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  text-align: justify;
}

.about-section .list-style-one {
  margin-bottom: 45px;
}

.about-section .btn-box {
  position: relative;
}

.about-section .btn-box a {
  padding: 15px 50px;
}

.about-section .image-column {
  position: relative;
}

.about-section .image-column .text-layer {
  position: absolute;
  right: -110px;
  top: 50%;
  font-size: 325px;
  line-height: 1em;
  color: #ffffff;
  margin-top: -175px;
  font-weight: 500;
}

.about-section .image-column .inner-column {
  position: relative;
  padding-right: 50px;
  padding-bottom: 125px;
}
.about-section .inner-column img {
  max-width: 100%;
}
/* 
.about-section .image-column .inner-column:before{
  position: absolute;
  left: -75px;
  top: 65px;
  height: 330px;
  width: 520px;
  background-image:url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
  content: "";
} */

.about-section .image-column .image-1 {
  position: relative;
}

.about-section .image-column .image-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.about-section .image-column .image-1 img {
  box-shadow: 0 20px 30px rgba(8, 13, 62, 0.15);
}
.about-section .image-column .image-2 img {
  border: 10px solid #fff;
}
.about-section .image-column .video-link {
  position: absolute;
  left: 70px;
  top: 170px;
}

.about-section .image-column .video-link .link {
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8, 13, 62, 0.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover {
  background-color: #191e34;
  color: #fff;
}
/* counter about */

#counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
}
#counter .item {
  background: #fff;
  width: 260px;
  padding: 28px 0px;
  margin: 10px;
  text-align: center;
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 24px -12px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 24px -12px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 0px 24px -12px rgba(0, 0, 0, 0.34);
}
#counter .item .count {
  color: #0069a5;
  margin-bottom: 5px;
  font-size: 34px;
}
#counter .item h3 {
  color: #4f4e28;
  text-transform: capitalize;
  font-size: 15px;
}
#counter .count.plus:after {
  content: "+";
}
#counter .count.cust:after {
  content: "K+";
}
#counter .count.percen:after {
  content: "%";
}
/* Responsive behavior */
@media (max-width: 768px) {
  #counter {
    flex-direction: column;
    padding: 20px;
  }

  .item {
    width: 100%;
    max-width: 300px;
  }

  .count {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .count {
    font-size: 2rem;
  }

  h3 {
    font-size: 1rem;
  }
}
/*  */
.full-gallery {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  /* padding-left: 20px; */
  /* height: 300px; */
}

.main-product-image {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 8px;
}

.product-thumbnails {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.thumbnail-img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.thumbnail-img:hover {
  border-color: #000;
  transform: scale(1.05);
}

@keyframes move-vertical-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-10px);
    opacity: 0;
  }
}

@keyframes move-vertical-in {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* .animate-button:hover.animate-btn {
  animation: move-vertical-hover 0.25s ;
} */
/* .animate-btn {
  display: inline-block;
  animation: move-vertical-out 0.25s ease forwards;
}*/
/*.animate-button:hover {*/
/*  background-color: #000;*/
/*}*/
.animate-btn:hover {
  animation: move-vertical-out 0.25s ease forwards;
  animation: move-vertical-in 0.55s ease forwards;
}

/* contact new */
.contact-info {
  display: inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.contact-info-icon {
  margin-bottom: 15px;
}
.contact-info-item {
  background: #225c8c;
  padding: 30px 0px;
}
.contact-page-sec .contact-page-form h2 {
  color: #071c34;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}
.contact-page-form .col-md-6.col-sm-6.col-xs-12 {
  padding-left: 0;
}
.contact-page-form.contact-form input {
  margin-bottom: 5px;
}
.contact-page-form.contact-form textarea {
  height: 110px;
}
.contact-page-form.contact-form input[type="submit"] {
  background: #071c34;
  width: 150px;
  border-color: #071c34;
}
.contact-info-icon i {
  font-size: 48px;
  color: #fff;
}
.contact-info-text p {
  margin-bottom: 0px;
}
.contact-info-text h2 {
  color: #fff;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-info-text span {
  color: #fff;
  font-size: 16px;

  display: inline-block;
  width: 100%;
}

.contact-page-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid #c9c7c7;
  margin-bottom: 20px;
  padding: 12px 16px;
  width: 100%;
}

.contact-page-form .message-input {
  display: inline-block;
  width: 100%;
  padding-left: 0;
}
.single-input-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid #c9c7c7;
  width: 100%;
  height: 120px;
  padding: 12px 16px;
  border-radius: 0;
}
.single-input-fieldsbtn input[type="submit"] {
  background: #225c8c none repeat scroll 0 0;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 10px 0;
  text-transform: capitalize;
  width: 150px;
  margin-top: 20px;
  font-size: 16px;
}
.single-input-fieldsbtn input[type="submit"]:hover {
  background: #071c34;
  transition: all 0.4s ease-in-out 0s;
  border-color: #071c34;
}
.single-input-field h4 {
  color: #464646;
  text-transform: capitalize;
  font-size: 14px;
}
.contact-page-form {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
  border: 1px solid #d7d7d7;
  padding: 30px;
  box-shadow: 5px 10px #d7d7d7;
}

.contact-page-map {
  margin-top: 36px;
}
.contact-page-form form {
  padding: 20px 15px 0;
}

.add-quote {
  text-align: left;
  margin-top: 17px;
  margin-left: 20px;
}
.add-quote a {
  color: #fff;
}
.btn:active {
  border: none;
}
.pl-0 {
  padding-left: 0;
}

.pl-0 a:hover {
  color: #fff;
  text-decoration: underline;
}
/* product  detail color*/

.filter-buttons {
  text-align: center;
  margin-bottom: 50px;
}
.filter-buttons .btn-custom-color {
  color: #225c8c !important;
  font-weight: 600 !important;
}
.filter-buttons .btn {
  background: none;
  border: none;
  padding: 0 1rem;
  position: relative;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
}

.filter-buttons .btn:not(:last-child) {
  border-right: 1px solid #999;
  border-radius: inherit;
}

.filter-buttons .btn::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3px;
  width: 30px;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.filter-buttons .btn.btn-custom-color::after {
  background-color: #225c8c;
}

.filter-buttons .btn:hover {
  color: #225c8c;
}

.site-header {
  background-color: #235d80;
  transition: background-color 0.3s ease;
  /* padding: 0 30px; */
}
.site-header.white-header {
  background-color: white;
}

/* Set all header text to black, EXCEPT the quote button */
/* .site-header.white-header a:not(.btn),
.site-header.white-header .animate-btn:not(.btn .animate-btn),
.site-header.white-header .fas:not(.btn .fas),
.site-header.white-header {
  color: black !important;
} */

.contact-icon {
  min-width: 100px;
}
.contact-text {
  word-break: break-word;
  width: min-content;
}
.contact-text a {
  color: #000;
}
input:focus,
textarea:focus {
  outline: none; /* remove default */
}
input:focus-visible,
textarea:focus-visible {
  border-bottom: 1px solid #006199;
  outline-offset: 2px;
  background-color: transparent;
}
@media (max-width: 768px) {
  .contact-page-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .contact-page-form {
    padding: 15px;
  }
}

.filter-buttons {
  /* display: flex;
  flex-wrap: wrap;
  gap: 10px; */
  border-bottom: 1px solid #e0e0e0;
  padding-left: 10px;
}

.filter-tab {
  padding: 6px 20px;
  margin: 0;
  text-decoration: none;
  color: #225c8c;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.filter-tab:hover {
  background-color: #f1f3f4;
}

.filter-tab.active,
.filter-tab[aria-selected="true"] {
  color: #000;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-bottom: 1px solid white;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .filter-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .filter-buttons button {
    flex: 0 0 auto; /* keeps buttons fixed size in scroll */
  }
}

.vm-section {
  padding: 48px 24px;
}

.vm-container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  position: relative;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* center vertical divider */
.vm-container::before {
  content: "";
  position: absolute;
  left: 50%;
  /* top: 8%; */
  height: 100%;
  width: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(-50%);
}

.vm-card {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.icon-frame {
  position: relative;
  width: 85px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}
.icon-frame .eye {
  position: absolute;
  left: 25px;
  background-color: #00629b;
}
.icon-frame .mis {
  position: absolute;
  left: 35px;
  background-color: #00629b;
}

.vm-text h3 {
  margin: 0 0 12px 0;
  font: 700 26px/1 Montserrat, Inter, sans-serif;
  letter-spacing: 0.5px;
}
.vm-text p {
  margin: 0;
  line-height: 1.65;
  max-width: 520px;
}
.vm-text {
  color: #fff;
}
/* responsive: stack vertically */
@media (max-width: 900px) {
  .vm-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vm-container::before {
    display: none;
  }
  .vm-card {
    gap: 48px;
  }
  .vm-text h3 {
    font-size: 22px;
  }
  .vm-text p {
    font-size: 16px;
  }
}
.main-img img {
  width: 350px;
}
.img-thumbnail {
  border: 1px solid #9f9f9f;
}
.quote-btn-container {
  margin-right: 15px;
}
#quote-counter {
  /* background-color: #225c8c; */
}

/* header responsive */

/* ---------- RESPONSIVE HEADER FIX ---------- */
@media (max-width: 991px) {
  /* Fullscreen Mobile Background */
  header.mobile-menu-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #235d80; /* SOLID BLUE BACKGROUND */
    overflow-y: auto;
    z-index: 9999;
  }

  .header-container {
    padding: 10px 20px;
    position: relative;
    z-index: 10000;
  }

  /* Hide desktop menu */
  .top-nav .main_menu,
  .bottom-header .main_menu {
    display: none;
  }

  /* Show MENU when active */
  header.mobile-menu-active .bottom-header .main_menu {
    display: block;
    width: 100%;
  }

  .bottom-header .main_menu ul {
    display: block;
    text-align: left;
    padding: 0 30px;
    margin: 0;
  }

  .bottom-header .main_menu ul li {
    display: block;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
  }

  .bottom-header .main_menu ul li a {
    padding: 14px 5px;
    font-size: 18px;
    color: #fff;
  }
  .top-header .main_menu ul li a {
    padding: 14px 5px;
    font-size: 18px;
    color: #fff;
  }
  /* Prevent background page visibility */
  .bottom-header {
    box-shadow: none;
  }

  /* Mega dropdown */
  .mega_menu_dropdown i {
    float: right;
    margin-left: 8px;
  }

  .mega_menu {
    background: #1f4e6b !important;
    padding: 10px 15px;
    display: none;
  }

  .dropdown-open > .mega_menu {
    display: block !important;
  }

  /* Mobile menu button */
  .mobile_btn {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
    z-index: 10000;
  }
  .top-nav {
    padding: 20px 10px 0px;
  }
}

/* google*/
.rating-bottom {
  margin-bottom: 80px;
}
.rating-main-container {
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #222;
}

.ratings-summary {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left,
.right {
  flex: 1;
  min-width: 300px;
  margin: 20px;
}

.rating-score {
  font-size: 36px;
  font-weight: bold;
}

.stars {
  color: gold;
  font-size: 22px;
}

.bar-container {
  display: flex;
  align-items: center;
  margin: 5px 0;
}

.bar-label {
  width: 30px;
}

.bar {
  background-color: #ccc;
  border-radius: 10px;
  height: 10px;
  width: 100%;
  margin: 0 10px;
}

.bar-fill {
  height: 100%;
  background-color: #4caf50;
  border-radius: 10px;
}

.right img {
  width: 100%;
  /* max-width: 250px; */
  border-radius: 10px;
  object-fit: cover;
}

.reviews {
  margin-top: 40px;
}
.reviews h3 {
  font-size: 24px;
  font-weight: 700;
  color: #225c8c;
  text-align: center;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  background-color: #ddd;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
}

.review-body {
  margin-top: 10px;
  font-size: 12px;
}

.thumbs {
  margin-top: 10px;
  font-size: 14px;
}

.thumbs span {
  margin-right: 20px;
  color: green;
  font-size: 12px;
}

.reviews {
  margin-top: 40px;
}

.review-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

/* Cards */
.review {
  flex: 1 1 calc(33.33% - 20px); /* desktop 3 per row */
  min-width: 260px;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 15px;
  background: #fafafa;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.review-header {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.avatar {
  width: 45px;
  height: 45px;
  background: #235d80;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
}

.thumbs span {
  margin-right: 15px;
  font-size: 14px;
  color: #444;
}

@media (max-width: 600px) {
  .review {
    flex: 1 1 100%;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .review {
    flex: 1 1 calc(50% - 20px);
  }
}

/* why choose us */

.section_title {
  margin-bottom: 40px;
}

.section_title h2 {
  color: #333333;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.single-number .fa.fa-minus {
  color: #fff;
  font-size: 8px;
  height: 2px;
  background: #ecdc19 none repeat scroll 0 0;
  width: 30px;
}
.single-number h5 {
  font-size: 18px;
  margin: 0;
}
.brand_border .fas.fa-handshake {
  font-size: 14px;
  color: #000000;
}

.section_title p {
  color: #333333;
  font-size: 14px;
  line-height: 25px;
  padding: 14px 0;
}

.choose_us .section_title {
  margin-top: 45px;
}
#service .single_service {
  padding: 32px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

#service .single_service:hover {
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.4);
}

#service .icon {
  border: 1px solid #666;
  border-radius: 5%;
  color: #333333;
  font-size: 35px;
  line-height: 65px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  width: 70px;
}

#service .single_service .single_service-left {
  padding-right: 25px;
}

.single_service-heading {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}

.single_service-body p {
  font-size: 16px;
  line-height: 25px;
}

.single_service-left {
  display: table-cell;
  vertical-align: top;
}
.single_service-body {
  color: #333333;
  display: table-cell;
  vertical-align: top;
}
.hvr-curl-top-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
}
.single-number {
  display: flex;
  align-items: center;
  gap: 5px;
}
.textslide-right {
  text-align: right;
}
.footer-top img {
  width: 100%;
}
.footer-top {
  margin: -7px 0;
}
.mb-60 {
  margin-bottom: 60px;
}
.see-all-btn {
  background: transparent;
  color: #005e95;
  border: 1px solid;
  border-radius: 25px;
  font-size: 16px;
  white-space: nowrap;
  padding: 10px 20px;
}
.selected-thumb {
  border: 2px solid #ff0;
}
@media (max-width: 767px) {
  #productCarousel .carousel-item > .row {
    flex-wrap: nowrap;
  }

  #productCarousel .carousel-item .col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
#productCarousel,
#productCarousel .carousel-inner {
  overflow: visible !important;
}
.best-seller {
  margin-bottom: 80px;
}

/* career start */
.career-section {
  padding: 120px 0 80px 0;
}
.career-section img {
  max-width: 100%;
}
.career-section .carrer-form {
  background-color: #fff;
  box-shadow: 0 0 11px 0px rgba(33, 18, 0, 0.3);
  padding: 30px;
}
.career-section .apply-box {
  max-width: 600px;
  padding: 20px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 50px;
  border-radius: 50px;
  box-shadow: 4px 3px 5px rgba(1, 1, 1, 0.1);
}

.career-section .title_small {
  font-size: 20px;
  color: orangered;
}

.career-section .form_container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.career-section .form_control {
  display: flex;
  flex-direction: column;
}

.career-section .textarea_control {
  grid-column: 1 / span 2;
}

.career-section .textarea_control textarea {
  width: 100%;
}

.career-section label {
  font-size: 15px;
  margin-bottom: 5px;
}

.career-section input,
.career-section select,
.career-section textarea {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 15px;
}

.career-section input:focus,
.career-section textarea:focus,
.career-section select:focus {
  outline-color: transparent;
}

.career-section .button_container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.career-section .button_container button {
  background: #225c8c;
  border: transparent solid 2px;
  padding: 5px 10px;
  color: #fff;
  transition: 0.3s ease-in;
  cursor: pointer;
}

@media screen and (max-width: 550px) {
  .career-section .textarea_control {
    grid-column: 1 / span 1;
  }
}

.filter-hidden {
  visibility: hidden;
  position: absolute;
  height: 0;
  overflow: hidden;
}
/* Protect ONLY product cards inside carousel */
#productCarousel .carousel-item.active .col-md-3 {
  display: block !important;
}

#productCarousel .carousel-item .col-md-3 {
  visibility: visible !important;
  opacity: 1 !important;
}

